.editorconfig 465 B

1234567891011121314151617181920212223242526
  1. # .editorconfig <https://github.com/tunnckoCore/dotfiles>
  2. #
  3. # Copyright (c) 2015 Charlike Mike Reagent, contributors.
  4. # Released under the MIT license.
  5. #
  6. root = true
  7. [*]
  8. charset = utf-8
  9. end_of_line = lf
  10. indent_size = 2
  11. indent_style = space
  12. [*.js]
  13. insert_final_newline = true
  14. trim_trailing_whitespace = true
  15. [*.php]
  16. indent_size = 4
  17. insert_final_newline = true
  18. trim_trailing_whitespace = true
  19. [*.md]
  20. insert_final_newline = false
  21. trim_trailing_whitespace = false