-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
.editorconfig
33 lines (28 loc) · 873 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
# EditorConfig is awesome: https://EditorConfig.org
# top-most EditorConfig file
root = true
# Unix-style newlines with a newline ending every file
[*]
indent_style = space
indent_size = 2
tab_width = 2
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true
max_line_length = 80
# Matches the emacs lisp files
[*.{el,els}]
indent_style = space
indent_size = 2
tab_width = 2
# Matches the script files
[{*.yml,*.sh,*.bash,*.bat,*.ps1}]
indent_style = space
indent_size = 2
tab_width = 2
# Matches the v files
[*.{v,vv,vsh}]
indent_style = space
indent_size = 4
tab_width = 4