UNPKG

394 BPlain TextView Raw
1# http://editorconfig.org
2root = true
3
4[*]
5indent_style = space
6indent_size = 2
7end_of_line = lf
8charset = utf-8
9trim_trailing_whitespace = true
10insert_final_newline = true
11
12# The JSON files contain newlines inconsistently
13[*.json]
14insert_final_newline = ignore
15
16# Makefiles always use tabs for indentation
17[Makefile]
18indent_style = tab
19indent_size = 4
20
21[*.md]
22trim_trailing_whitespace = false