.editorconfig 332 B

1234567891011121314
  1. # In case prettier plugin or eslint with autofix is not enabled in IDE
  2. # The fallback settings here should match with our prettierrc config
  3. # so we get consistency!
  4. root = true
  5. [*]
  6. indent_style=space
  7. indent_size=2
  8. tab_width=2
  9. end_of_line=lf
  10. charset=utf-8
  11. trim_trailing_whitespace=true
  12. max_line_length=120
  13. insert_final_newline=true