UNPKG

725 BPlain TextView Raw
1# EditorConfig is awesome: http://EditorConfig.org
2
3# https://github.com/jokeyrhyme/standard-editorconfig
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# Set default charset
14[*]
15charset = utf-8
16
17# Other good defaults
18[*]
19indent_size = 2
20indent_style = space
21trim_trailing_whitespace = true
22
23# HTML
24[*.{htm,html}]
25indent_size = 4
26indent_style = space
27trim_trailing_whitespace = true
28
29# JavaScript, JSX
30[*.{js,jsx}]
31indent_size = 4
32indent_style = space
33
34# JSON
35[*.json]
36indent_size = 2
37indent_style = space
38
39# YAML
40# http://yaml.org/spec/1.2/2009-07-21/spec.html#id2576668
41[*.{yaml,yml}]
42indent_size = 2
43indent_style = space