.editorconfig 553 B

12345678910111213141516171819202122232425262728
  1. # EditorConfig is awesome: http://EditorConfig.org
  2. # top-most EditorConfig file
  3. root = true
  4. # Unix-style newlines with a newline ending every file
  5. [*]
  6. end_of_line = lf
  7. insert_final_newline = true
  8. indent_style = space
  9. indent_size = 4
  10. # Matches multiple files with brace expansion notation
  11. # Set default charset
  12. [*.{js,py}]
  13. charset = utf-8
  14. # Tab indentation (no size specified)
  15. [Makefile]
  16. indent_style = tab
  17. # Matches the exact files either package.json or .travis.yml
  18. [{package.json,.travis.yml,appveyor.yml}]
  19. indent_style = space
  20. indent_size = 2