-
Notifications
You must be signed in to change notification settings - Fork 0
/
.editorconfig
45 lines (37 loc) · 1.04 KB
/
.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
#==========================================================#
# @.editorconfig
# editorconfig helps maintain consistent coding styles
# for multiple developers working on the same project
# across various editors and ides
#
# @editorconfig.org
#==========================================================#
#==========================================================#
# top-most editorconfig file
root = true
#==========================================================#
# all files - setup
[*]
charset = utf-8
indent_style = space
indent_size = 2
max_line_length = 120
end_of_line = lf
insert_final_newline = true
trim_trailing_whitespace = true
#==========================================================#
# specific files - overwrite
# markdown
[*.md]
indent_size = 4
trim_trailing_whitespace = false
#==========================================================#
# ignore paths
[/first-site/**]
charset = unset
indent_style = unset
indent_size = unset
max_line_length = unset
end_of_line = unset
insert_final_newline = unset
trim_trailing_whitespace = unset