2020-05-20 08:34:14 +00:00
|
|
|
# EditorConfig is awesome: https://editorconfig.org/
|
2017-03-22 20:44:04 +00:00
|
|
|
|
|
|
|
# top-most EditorConfig file
|
|
|
|
root = true
|
|
|
|
|
|
|
|
# Unix-style newlines with a newline ending every file
|
|
|
|
[*]
|
|
|
|
end_of_line = lf
|
|
|
|
insert_final_newline = true
|
|
|
|
indent_style = space
|
|
|
|
indent_size = tab
|
2018-07-06 04:48:36 +00:00
|
|
|
tab_width = 4
|
2017-03-22 20:44:04 +00:00
|
|
|
charset = utf-8
|
|
|
|
trim_trailing_whitespace = true
|
|
|
|
|
|
|
|
# Matches multiple files with brace expansion notation
|
|
|
|
# Set default charset
|
|
|
|
[*.{js,py}]
|
|
|
|
charset = utf-8
|
|
|
|
|
|
|
|
# 4 space indentation
|
|
|
|
[*.py]
|
|
|
|
indent_style = space
|
|
|
|
indent_size = 4
|
|
|
|
|
|
|
|
# Tab indentation (no size specified)
|
|
|
|
[Makefile]
|
|
|
|
indent_style = tab
|
|
|
|
|
|
|
|
# Indentation override for all JS under lib directory
|
2017-04-06 21:55:21 +00:00
|
|
|
[scripts/**.js]
|
2017-03-22 20:44:04 +00:00
|
|
|
indent_style = space
|
|
|
|
indent_size = 2
|
|
|
|
|
|
|
|
# Matches the exact files either package.json or .travis.yml
|
|
|
|
[{package.json,.travis.yml}]
|
|
|
|
indent_style = space
|
|
|
|
indent_size = 2
|