blob: 2d145b10b8299ae7b2444f87cc6130f5b33f8b6d [file] [log] [blame]
Matthew Maurer8c1c2802020-06-02 11:15:21 -07001# EditorConfig configuration
2# https://editorconfig.org
3
4# Top-most EditorConfig file
5root = true
6
7# Unix-style newlines with a newline ending every file, utf-8 charset
8[*]
9end_of_line = lf
10insert_final_newline = true
11trim_trailing_whitespace = true
12charset = utf-8
13
14# Match rust/toml, set 4 space indentation
15[*.{rs,toml}]
16indent_style = space
17indent_size = 4
18
19# Match json/yaml/markdown, set 2 space indentation
20[*.{json,yml,md}]
21indent_style = space
22indent_size = 2