blob: 748ec596daa0475defd0e5c0d4ecd4d829fef944 (
plain) (
blame)
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
|
root = true
[*]
charset = utf-8
indent_style = space
indent_size = 2
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true
[*.t]
trim_trailing_whitespace = false
[*.py]
indent_size = 4
[*.json]
insert_final_newline = false
[*.md]
trim_trailing_whitespace = false
[Makefile]
indent_style = tab
[{go.mod,go.sum,*.go}]
indent_style = tab
[nginx.conf]
indent_size = 8
[*.rs]
# Keep in sync with rustfmt
max_line_length = 100
indent_size = 4
|