Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adding EditorConfig configuration #340

Merged
merged 2 commits into from
Oct 29, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
[*]
indent_style = space
insert_final_newline = true
max_line_length = 120

[*.java]
ij_java_block_brace_style = end_of_line
ij_java_class_brace_style = end_of_line
ij_java_class_count_to_use_import_on_demand = 9000
ij_java_do_while_brace_force = always
ij_java_doc_enable_formatting = false
ij_java_for_brace_force = always
ij_java_if_brace_force = always
ij_java_imports_layout = java.**, |, javax.**, |, *, |, yandex.**, |, ru.yandex.**, |, tech.ydb.**, |, $*
ij_java_insert_override_annotation = true
ij_java_lambda_brace_style = end_of_line
ij_java_method_brace_style = end_of_line
ij_java_names_count_to_use_import_on_demand = 9000
ij_java_use_single_class_imports = true
ij_java_while_brace_force = always
Loading