Our repo has indent with 2 spaces. My colleague prefers tabs. Can VSCode does a conversions to tabs while opening a file?
I've tried EditorConfig extension for VSCode but it doesn't format a file on open. The file is opened with 2 spaces even if I have this .editorconfig:
[*]
indent_style = tabs
indent_size = 4
Note: We use Prettier in pre-commit hook to format everything.