diff options
author | Pauline <git@ethanlibs.co> | 2024-04-27 19:59:05 -0400 |
---|---|---|
committer | Pauline <git@ethanlibs.co> | 2024-04-27 19:59:05 -0400 |
commit | d95fe9ab23f4ce19ed1a17b13f995aceefd14fd8 (patch) | |
tree | f01fd22131c5557c6d50ea2dcedd6206c64d7e0b /.editorconfig | |
parent | cae1da9997d81af994f58ede97049fef4f123f8b (diff) | |
download | IntelliProcessor-d95fe9ab23f4ce19ed1a17b13f995aceefd14fd8.tar.gz IntelliProcessor-d95fe9ab23f4ce19ed1a17b13f995aceefd14fd8.tar.bz2 IntelliProcessor-d95fe9ab23f4ce19ed1a17b13f995aceefd14fd8.zip |
♻️ refactor(plugin): refactor cc -> org and update deps, intellij
Diffstat (limited to '.editorconfig')
-rw-r--r-- | .editorconfig | 42 |
1 files changed, 40 insertions, 2 deletions
diff --git a/.editorconfig b/.editorconfig index db6b96d..0901bba 100644 --- a/.editorconfig +++ b/.editorconfig @@ -1,2 +1,40 @@ -[*.{gradle,java}] -ij_java_class_count_to_use_import_on_demand = 999
\ No newline at end of file +root = true + +[*] +charset = utf-8 +end_of_line = lf +insert_final_newline = true +indent_style = tab +tab_width = 4 +trim_trailing_whitespace = true + +[*.gradle] +indent_style = tab + +[*.java] +indent_style = tab +ij_continuation_indent_size = 8 +ij_java_imports_layout = $*,|,java.**,|,javax.**,|,*,|,net.minecraft.**,|,org.polyfrost.** +ij_java_class_count_to_use_import_on_demand = 999 + +[*.json] +indent_style = space +indent_size = 2 + +[.editorconfig] +indent_style = space +indent_size = 4 + +[*.md] +trim_trailing_whitespace = false + +[*.gradle] +indent_style = tab + +[*.toml] +indent_style = tab +tab_width = 2 + +[*.properties] +indent_style = space +indent_size = 2 |