Is there any code formatter plugin for Atom Editor & Sublime Text that respect .editorconfig
& .jscsrc
files?
For example, if my .editorconfig
has the following settings
# 4 space indentation
[*.js]
indent_style = space
indent_size = 4
and .jscsrc
does not state anything about indentation, I would like to see my code being indented with 4 spaces along with other rules specified at .jscsrc
when I format the code (not auto format).
I would not prefer to maintain same configuration across multiple config files.