# editorconfig.org
root = true

[*]
charset = utf-8
end_of_line = lf
indent_style = space
indent_size = 2
insert_final_newline = true
trim_trailing_whitespace = true

# Vue Single File Components
[*.vue]
indent_size = 2

# JavaScript / TypeScript
[*.{js,jsx,ts,tsx}]
indent_size = 2

# JSON
[*.json]
indent_size = 2

# CSS, SCSS, LESS
[*.{css,scss,less}]
indent_size = 2

# YAML
[{*.yml,*.yaml,compose.yaml,compose.*.yaml}]
indent_size = 2

# Markdown
[*.md]
trim_trailing_whitespace = false
