...
1# top-most EditorConfig file
2root = true
3
4[*]
5end_of_line = lf
6insert_final_newline = true
7trim_trailing_whitespace = true
8charset = utf-8
9indent_style = space
10indent_size = 4
11
12# Go code uses tabs. Display with 4 space indentation in editors and on GitHub
13# (see https://github.com/isaacs/github/issues/170#issuecomment-150489692).
14[*.go]
15indent_style = tab
16
17[*.jsx]
18indent_size = 2
19indent_style = space
20
21[*.js]
22indent_size = 2
23indent_style = space
24
25[*.css]
26indent_size = 2
27indent_style = space
28
29[*.yml]
30indent_size = 2
31
32[*.yaml]
33indent_size = 2
34
35[*.proto]
36indent_size = 2
37indent_style = space
View as plain text