-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.editorconfig
More file actions
56 lines (38 loc) · 911 Bytes
/
.editorconfig
File metadata and controls
56 lines (38 loc) · 911 Bytes
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
44
45
46
47
48
49
50
51
# (EditorConfig is awesome)[https://editorconfig.org]
root = true
[*]
charset = utf-8
end_of_line = lf
indent_style = space
max_line_length = 160
insert_final_newline = true
trim_trailing_whitespace = true
# indent_brace_style = K&R variant 1TBS
indent_brace_style = 1tbs
curly_bracket_next_line = false
spaces_around_operators = true
spaces_around_brackets = inside
[*.{kt, kts}]
insert_final_newline = false
indent_size = 4
continuation_indent_size = 4
disabled_rules = import-ordering, no-wildcard-imports
[*.{java, groovy, gradle}]
insert_final_newline = false
indent_size = 4
continuation_indent_size = 8
disabled_rules = import-ordering, no-wildcard-imports
[*.{yaml, yml}]
indent_size = 2
continuation_indent_size = 2
[*.properties]
indent_size = 2
[*.{js, json}]
indent_size = 2
quote_type = double
continuation_indent_size = 2
[*.py]
indent_size = 4
[*.md]
[Jenkinsfile]
[Dockerfile]