-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.editorconfig
58 lines (44 loc) · 821 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
58
root = true
[*]
charset = utf-8
[*.lua]
indent_size = 2
continuation_indent = 2
# *StyLua*
quote_type = single
collapse_simple_statement = FunctionOnly
# *EmmyLuaCodeStyle*
align_function_params = false
align_continuous_assign_statement = false
align_continuous_rect_table_field = false
align_array_table = none
align_continuous_inline_comment = none
[*.{json,toml,yml,gyp}]
indent_style = space
indent_size = 2
[*.js]
indent_style = space
indent_size = 2
[*.scm]
indent_style = space
indent_size = 2
[*.{c,cc,h}]
indent_style = space
indent_size = 4
[*.rs]
indent_style = space
indent_size = 4
[*.{py,pyi}]
indent_style = space
indent_size = 4
[*.swift]
indent_style = space
indent_size = 4
[*.go]
indent_style = tab
indent_size = 8
[Makefile]
indent_style = tab
indent_size = 8
[parser.c]
indent_size = 2