-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy path.editorconfig
More file actions
28 lines (19 loc) · 738 Bytes
/
Copy path.editorconfig
File metadata and controls
28 lines (19 loc) · 738 Bytes
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
# top-most EditorConfig file
root = true
[*]
end_of_line = lf # Unix-style newlines
charset = utf-8
indent_style = space # default identation - spaces
indent_size = 4 # default identation - size
insert_final_newline = true # new line at the end of file
trim_trailing_whitespace = true # no extra sapces at the end of lines
[*.{go,gohtml,gotpl}] # Go
indent_style = tab
indent_size = 2
[{Makefile,makefile}] # CMake
indent_style = tab
[*.md] # Markdown
trim_trailing_whitespace = true
max_line_length = 100
insert_final_newline = true
indent_size = 2