.editorconfig
# This file is for unifying the coding style for different editors and IDEs
# editorconfig.org
root = true
[*]
indent_style = space
indent_size = 2
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true
[*.{json,html,css}]
indent_style = space
indent_size = 2
[*.js]
# indent_style = space
# indent_size = 2
indent_style = tab
indent_size = 4
[*.coffee]
indent_style = space
indent_size = 2
[*.md]
indent_style = space
[*.py]
indent_style = space