.editorconfig 344 B

1234567891011121314151617181920
  1. root = true
  2. [*]
  3. charset = utf-8
  4. end_of_line = lf
  5. indent_style = space
  6. indent_size = 4
  7. insert_final_newline = true
  8. trim_trailing_whitespace = true
  9. # YAML requires indentation with spaces instead of tabs.
  10. [*.{js,yml,yaml}]
  11. indent_style = space
  12. indent_size = 2
  13. # Makefile requires tab indentation.
  14. [Makefile]
  15. indent_style = tab
  16. indent_size = 4