Eric Bower
·
2026-01-18
editorconfig
1# top-most editorconfig file
2root = true
3
4[*]
5indent_style = space
6indent_size = 2
7end_of_line = lf
8charset = utf-8
9trim_trailing_whitespace = true
10insert_final_newline = true
11
12[*.py]
13indent_style = space
14indent_size = 4
15
16[Makefile]
17indent_style = tab
18indent_size = 4
19
20[*.go]
21indent_style = tab
22indent_size = 4
23
24[*.zig]
25indent_style = space
26indent_size = 2
27
28[*.{js,ts,tsx}]
29indent_style = space
30indent_size = 2