forked from diffplug/spotless
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.editorconfig
38 lines (32 loc) · 941 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
root = true
[*]
indent_style = tab
indent_size = 4
insert_final_newline = true
trim_trailing_whitespace = true
charset = utf-8
# md (GitHub shows code fences with 8 spaces)
[*.md]
indent_style = space
indent_size = 2
trim_trailing_whitespace = false
[*.java]
# Doc: https://youtrack.jetbrains.com/issue/IDEA-170643#focus=streamItem-27-3708697.0-0
ij_java_imports_layout = $*,|,java.**,|,javax.**,|,org.**,|,com.**,|,com.diffplug.**,|,*
ij_java_use_single_class_imports = true
ij_java_class_count_to_use_import_on_demand = 999
ij_java_names_count_to_use_import_on_demand = 999
[*.xml.mustache]
indent_style = space
[*.{yml,yaml}]
indent_style = space
indent_size = 2
# Prevent unexpected automatic indentation when crafting test-cases
[/testlib/src/main/resources/**]
charset = unset
end_of_line = unset
insert_final_newline = unset
trim_trailing_whitespace = unset
indent_style = unset
indent_size = unset
ij_formatter_enabled = false