-
Notifications
You must be signed in to change notification settings - Fork 5
/
.editorconfig
36 lines (31 loc) · 1.11 KB
/
.editorconfig
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# IntelliJ will automatically detect this file in the top level directory and customize
# its code style based on the rules below.
# EditorConfig helps maintain consistent coding styles for multiple developers working
# on the same project across various editors and IDEs. The EditorConfig project consists
# of a file format for defining coding styles and a collection of text editor plugins
# that enable editors to read the file format and adhere to defined styles.
# EditorConfig files are easily readable and they work nicely with version control systems.
# https://editorconfig.org/
[*]
charset=utf-8
end_of_line=lf
trim_trailing_whitespace=true
insert_final_newline=true
indent_style=space
indent_size=2
max_line_length = 100
ij_visual_guides = 100
[*.java]
ij_continuation_indent_size = 4
ij_java_class_count_to_use_import_on_demand = 1000
ij_java_indent_case_from_switch = true
ij_java_imports_layout = $*,|,*
ij_java_names_count_to_use_import_on_demand = 1000
ij_java_wrap_comments = true
[*.py]
indent_size = 4
# black line length is 88, not PEP8's 79.
max_line_length = 88
ij_visual_guides = 88
[build.gradle]
indent_size=4