-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy path.editorconfig
More file actions
34 lines (27 loc) · 569 Bytes
/
.editorconfig
File metadata and controls
34 lines (27 loc) · 569 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
# http://editorconfig.org
root = true
[*]
indent_size = 2
# Possible values - tab, space
indent_style = space
# Possible values - lf, crlf, cr
end_of_line = lf
# Possible values - latin1, utf-8, utf-16be, utf-16le
charset = utf-8
insert_final_newline = true
trim_trailing_whitespace = true
max_line_length = 120
[*.{js, ts}]
indent_size = 2
max_line_length = 100
[*.{yml, yaml}]
indent_size = 2
[*.{html, xml}]
indent_size = 4
[*.{css, scss, json}]
indent_size = 4
[*.{md, markdown}]
max_line_length = off
trim_trailing_whitespace = false
[*.sh]
indent_size = 4