Currently, the formatter can only receive config via cli flags. In the absence of explicit configuration, it would make a lot of sense for the formatter to respect existing .editorconfig files, which is more or less standard across editors. This would reduce formatter setup between editors
Eg:
.editorconfig
root = true
[*]
charset = utf-8
indent_style = space
indent_size = 2
should be equivalent to gdscript-formatter --use-spaces --indent-size 2
Thanks for an awesome formatter!
Currently, the formatter can only receive config via cli flags. In the absence of explicit configuration, it would make a lot of sense for the formatter to respect existing
.editorconfigfiles, which is more or less standard across editors. This would reduce formatter setup between editorsEg:
.editorconfigshould be equivalent to
gdscript-formatter --use-spaces --indent-size 2Thanks for an awesome formatter!