aboutsummarylogtreecommitdiffstats
path: root/.editorconfig
blob: 2b2338be4a6d0523f71f4ec0c49d5f07a7f4e4a6 (plain)
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
# https://editorconfig.org/#file-format-details
root = true

[*]
charset = utf-8
end_of_line = lf
indent_style = space
indent_size = 2
continuation_indent_size = 2
insert_final_newline = true
trim_trailing_whitespace  = true
max_line_length = 120

[Makefile]
indent_style = tab

[*.go]
indent_style = tab
indent_size = 8

[*.yml]
indent_size = 4

[*.md]
trim_trailing_whitespace = false