UNPKG

843 BPlain TextView Raw
1# EditorConfig is awesome: http://EditorConfig.org
2
3# top-most EditorConfig file
4root = true
5
6# Unix-style newlines with a newline ending every file
7[*]
8end_of_line = lf
9insert_final_newline = true
10
11# Matches multiple files with brace expansion notation
12# Set default charset
13[*.{js,py}]
14charset = utf-8
15
16# 4 space indentation
17[*.py]
18indent_style = space
19indent_size = 4
20
21# Tab indentation (no size specified)
22[Makefile]
23indent_style = tab
24
25# Indentation override for all JS under lib directory
26[*.js]
27indent_style = space
28indent_size = 4
29
30# Indentation override for all Less file
31[*.less]
32indent_style = space
33indent_size = 4
34
35# Indentation override for all Jade file
36[*.jade]
37indent_style = space
38indent_size = 2
39
40# Matches the exact files either package.json or .travis.yml
41[{package.json,.travis.yml}]
42indent_style = space
43indent_size = 2