I found a bug with klint, especially the use of .editorconfig file. When I use only klint the indend_size of the file is well use but not with spotless. Is there a configuration to put in spotless? Below my config: **build.gradle** ```groovy spotless { kotlin { ktlint('0.9.2') } } ``` **.editorconfig** ```` root=true [*.{kt,kts}] indent_size=2 ````