UNPKG

540 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[*.md]
22trim_trailing_whitespace = false
23
24[*.{ts,tsx,js,jsx}]
25end_of_line = lf
26charset = utf-8
27trim_trailing_whitespace = true
28indent_style = space
29indent_size = 2