.editorconfig 270 B

123456789101112131415161718
  1. root = true
  2. [*]
  3. charset = utf-8
  4. indent_style = space
  5. indent_size = 2
  6. end_of_line = lf
  7. trim_trailing_whitespace = true
  8. insert_final_newline = true
  9. [*.{js,jsx,ts,tsx,vue,hbs}]
  10. max_line_length = 180
  11. [*.md]
  12. trim_trailing_whitespace = false
  13. [Makefile]
  14. indent_style = tab