.editorconfig 313 B

12345678910111213141516
  1. # editorconfig.org
  2. root = true
  3. [*]
  4. indent_style = space
  5. indent_size = 2
  6. tab_width = 2
  7. end_of_line = lf
  8. charset = utf-8
  9. trim_trailing_whitespace = true
  10. insert_final_newline = true
  11. max_line_length = 80
  12. quote_type = single
  13. curly_bracket_next_line = true
  14. spaces_around_operators = true
  15. spaces_around_brackets = true