| 1 | # top-most EditorConfig file |
| 2 | root = true |
| 3 | |
| 4 | # Unix-style newlines with a newline ending every file |
| 5 | [*] |
| 6 | charset = utf-8 |
| 7 | end_of_line = lf |
| 8 | insert_final_newline = true |
| 9 | indent_style = space |
| 10 | indent_size = 4 |
| 11 | trim_trailing_whitespace = true |
| 12 | max_line_length = 80 |
| 13 | |
| 14 | [{Makefile,GNUmakefile*}] |
| 15 | indent_style = tab |
| 16 | |
| 17 | [{*.toml,*.yml}] |
| 18 | indent_size = 2 |
| 19 |
