.editorconfig 343 B

1234567891011121314151617
  1. # EditorConfig is awesome: https://editorconfig.org/
  2. # top-most EditorConfig file
  3. root = true
  4. # Unix-style newlines with a newline ending for every file
  5. # Indent with 4 spaces
  6. [*]
  7. charset = utf-8
  8. end_of_line = lf
  9. indent_style = space
  10. indent_size = 4
  11. insert_final_newline = true
  12. trim_trailing_whitespace = true
  13. [Makefile]
  14. indent_style = tab