# EditorConfig helps developers define and maintain consistent
# coding styles between different editors and IDEs
# https://editorconfig.org
root = true
[*]
charset = utf-8
end_of_line = lf
indent_style = space
indent_size = 4
insert_final_newline = true
trim_trailing_whitespace = true
[*.{js,yml,yaml}]
indent_style = space
indent_size = 2
[*.{bat,cmd,ps1}]
end_of_line = crlf
[*.md]
trim_trailing_whitespace = false
|