.editorconfig 191 B

1234567891011121314
  1. root = true
  2. [*]
  3. trim_trailing_whitespace = true
  4. insert_final_newline = true
  5. [*.rs]
  6. indent_style = space
  7. indent_size = 4
  8. max_line_length = 120
  9. [*.toml]
  10. indent_style = space
  11. indent_size = 2