1# top-most EditorConfig file
2root = true
3
4# Unix-style newlines with a newline ending every file
5[*]
6end_of_line = lf
7insert_final_newline = true
8indent_style = space
9indent_size = 2
10trim_trailing_whitespace = true
11
12# Set default charset
13[*.{js,py,go,scala,rb,java,html,css,less,sass,md}]
14charset = utf-8
15
16# Tab indentation (no size specified)
17[*.go]
18indent_style = tab
19
20[*.md]
21trim_trailing_whitespace = false
22
23# Matches the exact files either package.json or .travis.yml
24[{package.json,.travis.yml}]
25indent_style = space
26indent_size = 2
27