aboutsummaryrefslogtreecommitdiff
path: root/.editorconfig
blob: ab11d40edb96877f9550e63d08d929bed29fe180 (plain)
  1. # editorconfig.org
  2. root = true
  3. [*]
  4. end_of_line = lf
  5. charset = utf-8
  6. insert_final_newline = true
  7. [*.js]
  8. trim_trailing_whitespace = true
  9. indent_style = space
  10. indent_size = 2
  11. [*.{c,h}]
  12. trim_trailing_whitespace = true
  13. indent_style = tab
  14. indent_size = 8
  15. [Makefile]
  16. trim_trailing_whitespace = true
  17. indent_style = tab
  18. indent_size = 8