UNPKG

492 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# Minified JavaScript files shouldn't be changed
17[**.min.js]
18indent_style = ignore
19insert_final_newline = ignore
20
21# Makefiles always use tabs for indentation
22[Makefile]
23indent_style = tab
24
25[*.md]
26trim_trailing_whitespace = false