-
Notifications
You must be signed in to change notification settings - Fork 292
/
.editorconfig
64 lines (50 loc) · 1.17 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
root = true
[*]
max_line_length = 120
indent_style = space
indent_size = 2
end_of_line = lf
insert_final_newline = true
trim_trailing_whitespace = true
charset = utf-8
[{*.{json,yml,html,css,scss,sass,svg,drawio,md},go.mod,go.sum}]
max_line_length = unset
[*.go]
indent_style = tab
[Makefile]
indent_style = tab
indent_size = 2
[*.drawio]
insert_final_newline = false
[{*.go,*.md,*.svg}]
trim_trailing_whitespace = false
[{*.json,*.svg,LICENSE}]
insert_final_newline = unset
[{*.svg}]
end_of_line = unset
[{*.go,*.svg,LICENSE}]
indent_size = unset
indent_style = unset
[*.{go,js}]
# Allow C-style doc comments
block_comment_start = /*
block_comment = *
block_comment_end = */
[{go.mod,go.sum}]
indent_style = tab
[doc/data/*]
indent_style = unset
indent_size = unset
[doc/themes/the-things-stack/layouts/shortcodes/*.html]
indent_size = unset
indent_style = unset
insert_final_newline = false
[{doc/themes/the-things-stack/node_modules,doc/themes/the-things-stack/yarn.lock, *.bin}]
# Ignore packages and generated files
max_line_length = unset
indent_style = unset
indent_size = unset
end_of_line = unset
insert_final_newline = unset
trim_trailing_whitespace = unset
charset = unset