# EditorConfig is awesome: https://EditorConfig.org
# top-most EditorConfig file
root = true
# All files
[*]
charset = utf-8
end_of_line = lf
indent_style = space
indent_size = 2
insert_final_newline = true
trim_trailing_whitespace = true
# TypeScript/JavaScript
[*.{ts,tsx,js,jsx}]
indent_size = 2
# JSON files
[*.json]
indent_size = 2
# Markdown
[*.md]
trim_trailing_whitespace = false
# YAML
[*.{yml,yaml}]
indent_size = 2
# Package files
[{package.json,.eslintrc,*.config.js}]
indent_size = 2
# Makefiles
[Makefile]
indent_style = tab
# Ignore paths
[{dist/,node_modules/,*.min.js,*.min.css}]