1# https://editorconfig.org/
2
3root = true
4
5[*]
6end_of_line = lf
7charset = utf-8
8trim_trailing_whitespace = true
9insert_final_newline = true
10indent_style = space
11indent_size = 4
12
13[{CMakeLists.*,*.cmake}]
14indent_style = space
15indent_size = 2
16
17[Makefile]
18indent_style = tab
19
20[*.{bat,cmd,cmd.*}]
21end_of_line = crlf
22indent_style = space
23indent_size = 2
24
25[*.{ps1,ps1.*}]
26end_of_line = crlf
27indent_style = space
28indent_size = 4
29
30[*.{md,markdown}]
31indent_size = 2
32