-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.editorconfig
57 lines (46 loc) · 1000 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
##########################################
# Common Settings
##########################################
# This file is the top-most EditorConfig file
root = true
# All files
[*]
charset = utf-8
end_of_line = lf
indent_size = 2
indent_style = space
insert_final_newline = true
trim_trailing_whitespace = true
max_line_length = 140
#########################################
# File Extension Settings
##########################################
[*.{yml,yaml}]
indent_size = 2
indent_style = space
[*-{secret,secrets}.{yml,yaml}]
max_line_length = off
[{values.yaml]
max_line_length = off
[*-apps/envs/*/*.yaml]
max_line_length = off
[*.md]
max_line_length = off
trim_trailing_whitespace = false
indent_style = none
[*.json]
indent_size = 2
indent_style = space
[*.sh]
indent_size = 2
indent_style = space
[*.txt]
max_line_length = off
trim_trailing_whitespace = false
indent_style = null
[Makefile]
tab_width = 2
indent_style = tab
max_line_length = off
[COMMIT_EDITMSG]
max_line_length = off