.editorconfig 472 B

12345678910111213141516171819202122
  1. # EditorConfig is awesome: https://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. # Matches multiple files with brace expansion notation
  9. # Set default charset
  10. [*.{js,tsx}]
  11. charset = utf-8
  12. indent_style = space
  13. indent_size = 2
  14. # Matches the exact files either package.json or .travis.yml
  15. [{package.json,.travis.yml}]
  16. indent_style = space
  17. indent_size = 2