Last active 1728400168

Revision f1e86b1e1644f762794f8b8a926ee9b12d7f63fb

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