# EditorConfig helps developers define and maintain consistent # coding styles between different editors and IDEs # editorconfig.org root = true [*] # Change for personal preference indent_size = 4 # Do not change indent_style = tab charset = utf-8 trim_trailing_whitespace = true insert_final_newline = true [*.md] trim_trailing_whitespace = false [*.yml] indent_size = 2 indent_style = spaces [*.js] curly_bracket_next_line = false spaces_around_operators = true indent_brace_style = 1TBS # spaces_around_brackets = boths