mirror of
https://github.com/Jozufozu/Flywheel.git
synced 2024-11-10 20:45:59 +01:00
37 lines
1.0 KiB
INI
37 lines
1.0 KiB
INI
# http://editorconfig.org
|
|
root = true
|
|
|
|
[*]
|
|
indent_style = space
|
|
indent_size = 4
|
|
end_of_line = lf
|
|
charset = utf-8
|
|
trim_trailing_whitespace = true
|
|
insert_final_newline = true
|
|
|
|
[*.json]
|
|
indent_size = 2
|
|
max_line_length = 500
|
|
ij_json_keep_blank_lines_in_code = 0
|
|
ij_json_keep_indents_on_empty_lines = false
|
|
ij_json_keep_line_breaks = true
|
|
ij_json_space_after_colon = true
|
|
ij_json_space_after_comma = true
|
|
ij_json_space_before_colon = true
|
|
ij_json_space_before_comma = false
|
|
ij_json_spaces_within_braces = true
|
|
ij_json_spaces_within_brackets = false
|
|
ij_json_wrap_long_lines = false
|
|
|
|
[*.java]
|
|
indent_style = tab
|
|
ij_continuation_indent_size = 8
|
|
ij_java_blank_lines_before_class_end = 0
|
|
ij_java_blank_lines_after_anonymous_class_header = 0
|
|
ij_java_blank_lines_after_class_header = 0
|
|
ij_java_blank_lines_before_method_body = 0
|
|
ij_java_else_on_new_line = false
|
|
ij_java_class_count_to_use_import_on_demand = 99
|
|
ij_java_names_count_to_use_import_on_demand = 99
|
|
ij_java_imports_layout = $*, |, java.**, |, javax.**, |, org.**, |, com.**, |, *
|