UNPKG

583 BPlain TextView Raw
1root = true
2
3# Unix-style newlines with a newline ending every file
4[*]
5end_of_line = lf
6insert_final_newline = true
7
8# Matches multiple files with brace expansion notation
9# Set default charset
10[*.{js,py}]
11charset = utf-8
12
13# 4 space indentation
14[*.py]
15indent_style = space
16indent_size = 4
17
18[*.js]
19indent_style = space
20indent_size = 2
21
22[*.md]
23indent_style = space
24indent_size = 2
25
26[*.json]
27indent_style = space
28indent_size = 2
29
30# Matches the exact files either package.json or .travis.yml
31[{package.json,.travis.yml,.jscsrc,.jshintrc,.eslintrc}]
32indent_style = space
33indent_size = 2