.editorconfig
1# Ref: https://editorconfig.org
2
3root = true
4
5[*]
6end_of_line = lf
7indent_size = 4
8indent_style = space
9insert_final_newline = true
10trim_trailing_whitespace = true
11
12[*.{graphql,js,json,nix,toml,ts,tsx,yaml,yml}]
13indent_size = 2
14
15[{Makefile,go.mod,go.sum,*.go}]
16indent_style = tab