UNPKG

530 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# 4 space indentation
12[*.py]
13indent_style = space
14indent_size = 4
15
16# Tab indentation (no size specified)
17[*.js]
18indent_style = space
19indent_size = 4
20
21# Matches the exact files package.json and .travis.yml
22[{package.json,.travis.yml,Gruntfile.js}]
23indent_style = space
24indent_size = 2
25
26[Makefile]
27indent_style = tab
28indent_size = 4