.editorconfig 386 B

1234567891011121314151617181920
  1. # This is the root file
  2. root = true
  3. # All files
  4. [*]
  5. charset = utf-8
  6. end_of_line = lf
  7. indent_size = 2
  8. indent_style = space
  9. insert_final_newline = true
  10. trim_trailing_whitespace = true
  11. # JS
  12. [{*.js}]
  13. quote_type = single
  14. curly_bracket_next_line = false
  15. spaces_around_operators = true
  16. space_after_control_statements = true
  17. space_after_anonymous_functions = false
  18. spaces_in_brackets = false