Geen omschrijving

.editorconfig 318B

123456789101112131415161718192021222324
  1. # Editor config from Quickstart
  2. # qkst.io/dotfiles/editorconfig
  3. root = true
  4. [*]
  5. end_of_line = lf
  6. insert_final_newline = true
  7. [*.md]
  8. trim_trailing_whitespace = false
  9. [*.js]
  10. indent_style = space
  11. indent_size = 2
  12. [Makefile]
  13. indent_style = tab
  14. indent_size = 8
  15. [*.{js}]
  16. charset = utf-8
  17. trim_trailing_whitespace = true