-
Notifications
You must be signed in to change notification settings - Fork 5
/
.editorconfig
59 lines (47 loc) · 974 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
# EditorConfig is awesome: http://EditorConfig.org
# Uses editorconfig to maintain consistent coding styles
# top-most EditorConfig file
root = true
# Unix-style newlines with a newline ending every file
[*]
charset = utf-8
end_of_line = lf
indent_size = 2
indent_style = space
insert_final_newline = true
max_line_length = 120
trim_trailing_whitespace = true
tab_width = 8
[*.{tf,tfvars}]
indent_size = 2
indent_style = space
[*.md]
max_line_length = 0
trim_trailing_whitespace = false
[*.py]
max_line_length = 120
indent_style = space
indent_size = 4
ignore_frosted_errors = E103
skip = runtests.py,build
balanced_wrapping = true
not_skip = __init__.py
[Makefile]
tab_width = 2
indent_style = tab
[COMMIT_EDITMSG]
max_line_length = 0
[*.yml]
indent_style = space
indent_size = 2
[*.go]
indent_style = tab
indent_size = 8
[*.{rst,ini}]
indent_style = space
indent_size = 4
[*.j2]
end_of_line = lf
[{Dockerfile,*.json,*.sh}]
indent_style = space
indent_size = 2