.editorconfig 270 B

123456789101112131415161718
  1. # http://editorconfig.org
  2. root = true
  3. [*]
  4. indent_style = tab
  5. indent_size = 4
  6. end_of_line = lf
  7. charset = utf-8
  8. trim_trailing_whitespace = true
  9. insert_final_newline = false
  10. [gulpfile.js]
  11. indent_style = space
  12. indent_size = 2
  13. [*.yml]
  14. indent_style = space
  15. indent_size = 2