.editorconfig 638 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. # This file is for unifying the coding style for different editors and IDEs
  2. # editorconfig.org
  3. root = true
  4. [*]
  5. end_of_line = lf
  6. charset = utf-8
  7. trim_trailing_whitespace = true
  8. insert_final_newline = true
  9. # Tabs in JS unless otherwise specified
  10. [**.js]
  11. indent_style = tab
  12. [Makefile]
  13. indent_style = tab
  14. [speed/**.html]
  15. indent_style = tab
  16. [speed/**.css]
  17. indent_style = tab
  18. [speed/benchmarker.js]
  19. indent_style = space
  20. indent_size = 2
  21. [test/**.xml]
  22. indent_style = tab
  23. [test/**.php]
  24. indent_style = tab
  25. [test/**.html]
  26. indent_style = tab
  27. [test/**.css]
  28. indent_style = space
  29. indent_size = 8