Skip to content
This repository was archived by the owner on Nov 15, 2023. It is now read-only.

unset all defaults in .editorconfig for *.rs #9387

Closed
wants to merge 2 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,17 @@ trim_trailing_whitespace=true
max_line_length=100
insert_final_newline=true

# rust files ignored, instead use `rustfmt.toml` with `cargo +nightly fmt`
[*.rs]
indent_style=unset
indent_size=unset
tab_width=unset
end_of_line=unset
charset=unset
trim_trailing_whitespace=unset
max_line_length=unset
insert_final_newline=unset

[*.md]
max_line_length=80
indent_style=space
Expand Down