-
Notifications
You must be signed in to change notification settings - Fork 0
/
.editorconfig
58 lines (43 loc) · 971 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
# Generated by github.com/usagiga/editorconfig
# https://github.com/usagiga/editorconfig
root = true
[*]
end_of_line = lf
insert_final_newline = true
charset = utf-8
trim_trailing_whitespace = true
indent_style = space
indent_size = 4
# In default, tab_width is set the value of indent_size
# tab_width = 4
[*.go]
indent_style = tab
[Makefile]
indent_style = tab
[*.{json,yml,yaml,xml,iml}]
indent_size = 2
[*.{html,htm,xhtml,xhtm}]
indent_size = 2
[*.{json.tftpl, tf, hcl, tfvars, tfstate, tfstate.backup}]
indent_size = 2
[*.md]
indent_size = 2
[*.sh]
indent_style = tab
[*.{pl,t}]
# Default
[*.cs]
# Default
[*.{c,cpp,h,hpp}]
# To configure their rules, use clang-format
indent_style = unset
indent_size = unset
[*.{js,jsx,ts,tsx,css,scss,vue}]
# To configure their rules, use ESLint / Prettier
insert_final_newline = unset
trim_trailing_whitespace = unset
indent_style = unset
indent_size = unset
[.gitmodules]
indent_style = unset
indent_size = unset