.editorconfig 225 B

1234567891011121314151617
  1. root = true
  2. [*]
  3. charset = utf-8
  4. end_of_line = lf
  5. indent_style = space
  6. indent_size = 4
  7. max_line_length = 80
  8. trim_trailing_whitespace = true
  9. insert_final_newline = true
  10. [*.sh]
  11. indent_style = tab
  12. [*.{vue,js}]
  13. indent_size = 2