.editorconfig 738 B

12345678910111213141516171819202122232425262728293031323334
  1. # https://editorconfig.org/
  2. root = true
  3. [*]
  4. trim_trailing_whitespace = true
  5. insert_final_newline = true
  6. end_of_line = lf
  7. charset = utf-8
  8. tab_width = 4
  9. [{*.{awk,bat,c,cpp,d,dasc,h,l,re,skl,w32,y},Makefile*}]
  10. indent_size = 4
  11. indent_style = tab
  12. [*.{dtd,html,inc,php,phpt,rng,wsdl,xml,xsd,xsl}]
  13. indent_size = 4
  14. indent_style = space
  15. [*.{ac,m4,sh,yml}]
  16. indent_size = 2
  17. indent_style = space
  18. [*.md]
  19. indent_style = space
  20. max_line_length = 80
  21. [COMMIT_EDITMSG]
  22. indent_size = 4
  23. indent_style = space
  24. max_line_length = 80
  25. [*.patch]
  26. trim_trailing_whitespace = false