1# Top-most EditorConfig file
2root = true
3
4# Unix-style newlines with a newline ending every file
5[*]
6end_of_line = lf
7insert_final_newline = true
8charset = utf-8
9
10# Four-space indentation
11[*.py]
12indent_size = 4
13indent_style = space
14trim_trailing_whitespace = true
15
16# Two-space indentation
17[*.yml]
18indent_size = 2
19