Last active 1728400168

.editorconfig Raw
1# EditorConfig is awesome: https://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[lib/**.js]
27indent_style = space
28indent_size = 2
29
30[*.yml]
31indent_style = space
32indent_size = 2
33
34# Matches the exact files either package.json or .travis.yml
35[{package.json,.travis.yml}]
36indent_style = space
37indent_size = 2
38
39