.editorconfig 249 B

1234567891011121314151617
  1. [*]
  2. indent_style = space
  3. indent_size = 2
  4. max_line_length=80
  5. end_of_line = lf
  6. charset = utf-8
  7. trim_trailing_whitespace = true
  8. insert_final_newline = true
  9. [*.{py,xml}]
  10. indent_style = space
  11. indent_size = 4
  12. [*.js]
  13. indent_style = space
  14. indent_size = 2