# EditorConfig helps developers define and maintain consistent
# coding styles between different editors and IDEs
# editorconfig.org

root = true


[*]

# Change for personal preference
indent_size = 2

# Do not change
indent_style = space
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true

[*.md]
trim_trailing_whitespace = false

[*.js]
curly_bracket_next_line = false
spaces_around_operators = true
indent_brace_style = 1TBS
spaces_around_brackets = both