I tried to overwrite IntelliJ's default formatting options with a .editorconfig file. It works for the default options (like indent_size) but not for IntelliJ specific one (prefixed with ij_).
These changes happen after configuring the code style in IntelliJ for JavaScript. So it seems that these additional options are ignored in the custom svelte HTML language.
I tried to overwrite IntelliJ's default formatting options with a
.editorconfig
file. It works for the default options (likeindent_size
) but not for IntelliJ specific one (prefixed withij_
).A little example:
I would expect the following changes after formatting the component file:
These changes happen after configuring the code style in IntelliJ for JavaScript. So it seems that these additional options are ignored in the custom svelte HTML language.