forked from elastic/elasticsearch
-
Notifications
You must be signed in to change notification settings - Fork 1
/
.editorconfig
43 lines (32 loc) · 792 Bytes
/
.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
37
38
39
40
41
42
43
# EditorConfig: http://editorconfig.org/
root = true
[*]
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true
indent_style = space
# IntelliJ-specific options
ij_java_class_count_to_use_import_on_demand = 999
ij_java_names_count_to_use_import_on_demand = 999
ij_java_imports_layout = *,|,com.**,|,org.**,|,java.**,javax.**,|,$*
[*.gradle]
indent_size = 2
[*.groovy]
indent_size = 4
max_line_length = 140
ij_groovy_class_count_to_use_import_on_demand = 999
ij_groovy_names_count_to_use_import_on_demand = 999
ij_groovy_imports_layout = *,|,com.**,|,org.**,|,java.**,javax.**,|,$*
[*.java]
indent_size = 4
max_line_length = 140
[*.json]
indent_size = 2
[*.py]
indent_size = 2
[*.sh]
indent_size = 2
[*.{yml,yaml}]
indent_size = 2
[*.{xsd,xml}]
indent_size = 4