1# EditorConfig configuration
2# https://editorconfig.org
3
4root = true
5
6[*]
7charset = utf-8
8end_of_line = lf
9indent_size = 4
10indent_style = space
11insert_final_newline = true
12trim_trailing_whitespace = true
13
14[*.{json,yml,md}]
15indent_size = 2
16
17[*.sh]
18indent_size = 2
19binary_next_line = true
20switch_case_indent = true
21