# top-most EditorConfig file
root = true

# all files
[*]
end_of_line = lf
insert_final_newline = true
indent_style = space
indent_size = 2
charset = utf-8
trim_trailing_whitespace = true
max_line_length = 80
quote_type = double

[*.{js,ts}]
quote_type = double
curly_bracket_next_line = false
spaces_around_brackets = inside
indent_brace_style = BSD KNF