1# http://editorconfig.org
2root = true
3
4[*]
5indent_style = space
6indent_size = 2
7charset = utf-8
8trim_trailing_whitespace = true
9insert_final_newline = true
10max_line_length = 120
11
12[*.go]
13indent_style = tab
14indent_size = 4
15charset = utf-8
16trim_trailing_whitespace = true
17insert_final_newline = true
18
19[*.{js,ts,tsx,scss}]
20quote_type = single
21
22[*.md]
23trim_trailing_whitespace = false
24
25[Makefile]
26indent_style = tab
27indent_size = 2
28
29[*.star]
30indent_size = 4
31