-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.editorconfig
More file actions
52 lines (39 loc) · 856 Bytes
/
.editorconfig
File metadata and controls
52 lines (39 loc) · 856 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
52
#
# DO NOT MODIFY, WILL BE OVERWRITTEN BY @naturalcycles/dev-lib
#
# http://editorconfig.org
#
root = true
[*]
charset = utf-8
indent_style = space
indent_size = 2
end_of_line = lf
trim_trailing_whitespace = true
insert_final_newline = true
[*.md]
trim_trailing_whitespace = false
indent_size = 4
[*.html]
indent_size = 2
[*.{css,scss}]
indent_size = 2
[*.{js,ts}]
indent_size = 2
[*.json]
indent_size = 2
[*.java]
indent_size = 4
[*.{kt,kts}]
disabled_rules=no-wildcard-imports
ij_kotlin_imports_layout=*,java.**,javax.**,kotlin.**,^ # default IntelliJ IDEA style, same as alphabetical, but with "java", "javax", "kotlin" and alias imports in the end of the imports list
[*.xml]
indent_size = 2
[*.sql]
indent_size = 2
[.eslintrc]
indent_size = 2
[*.min.*]
indent_style = ignore
trim_trailing_whitespace = false
insert_final_newline = ignore