.editorconfig 268 B

1234567891011121314151617181920
  1. ; https://editorconfig.org/
  2. root = true
  3. [*]
  4. indent_style = space
  5. indent_size = 4
  6. insert_final_newline = true
  7. trim_trailing_whitespace = true
  8. end_of_line = lf
  9. charset = utf-8
  10. [*.{json,yml}]
  11. indent_size = 2
  12. [*.neon]
  13. indent_style = tab
  14. [Makefile]
  15. indent_style = tab