-
Notifications
You must be signed in to change notification settings - Fork 234
Closed
Description
Every time I open a .ts file, the indendation is set to spaces instead of keeping my config of tabs. In my settings I have...
"tab_size": 4,
"translate_tabs_to_spaces": false,
"typescript_auto_format": false
... and in my .editorconfig I have ...
[*]
charset = utf-8
end_of_line = lf
indent_style = tab
insert_final_newline = true
trim_trailing_whitespace = true
So the problem comes from the TypeScript plugin.
How can I avoid this overwrite behavior the plugin has over my indentation settings?