.editorconfig 292 B

123456789101112131415161718192021
  1. # editorconfig.org
  2. root = true
  3. [*]
  4. end_of_line = lf
  5. insert_final_newline = true
  6. trim_trailing_whitespace = true
  7. charset = utf-8
  8. [*.{js,ts,json,scss,sh}]
  9. indent_style = space
  10. indent_size = 4
  11. [webpack.*.js]
  12. indent_style = space
  13. indent_size = 2
  14. [*.yml]
  15. indent_style = space
  16. indent_size = 2