.editorconfig 471 B

1234567891011121314151617181920
  1. ; EditorConfig is awesome: http://EditorConfig.org
  2. ; top-most EditorConfig file
  3. root = true
  4. ; base rules
  5. [*]
  6. end_of_line = lf
  7. insert_final_newline = false
  8. indent_style = space
  9. indent_size = 4
  10. charset = utf-8
  11. trim_trailing_whitespace = true
  12. ; The default indent on package.json is 2 spaces, better to keep it so we can
  13. ; use `npm install --save` and other features that rewrites the package.json
  14. ; file automatically
  15. [package.json]
  16. indent_style = space
  17. indent_size = 2