Files
keycloak/.editorconfig
Thomas Darimont 6ec6e802f4 Disable trim_trailing_whitespace in editorconfig
Currently, the trim_trailing_whitespace setting is enabled for *.java
files which leads to a lot of noise when doing simple changes in a PR.
This makes it harder to see the essence of the PR.

Fixes #34755

Signed-off-by: Thomas Darimont <thomas.darimont@googlemail.com>
2024-11-07 17:48:17 +01:00

13 lines
334 B
INI

root = true
[{*.js,*.tsx,*.adoc}]
insert_final_newline = true
trim_trailing_whitespace = true
[*.java]
insert_final_newline = true
# Don't use class imports with an asterisk ('*') in IntelliJ
ij_java_use_single_class_imports = true
ij_java_class_count_to_use_import_on_demand = 999
ij_java_names_count_to_use_import_on_demand = 999