aboutsummaryrefslogtreecommitdiff
path: root/.editorconfig
blob: 946396e7f27aedff2a91ec25fe8a7f9a816ba673 (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,Makefile}]
  12. trim_trailing_whitespace = true
  13. indent_style = tab
  14. indent_size = 8