.editorconfig 224 B

1234567891011121314151617
  1. root = true
  2. [*]
  3. insert_final_newline = true
  4. charset = utf-8
  5. trim_trailing_whitespace = true
  6. [*.js]
  7. indent_style = tab
  8. indent_size = 4
  9. [*.json]
  10. indent_style = space
  11. indent_size = 2
  12. [*.md]
  13. trim_trailing_whitespace = false