We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The src/etc/{emacs, gedit, kate, vim, zsh} folders should also be packaged. This would make it easier for package maintainers to include them.
src/etc/{emacs, gedit, kate, vim, zsh}
The text was updated successfully, but these errors were encountered:
/cc @brson ?
Sorry, something went wrong.
This may be trickier now that the configs are in separate repos (cc #18274 (comment)).
Triage: no change.
This is a pretty old bug at this point, but all our editor integration has its own packaging/distribution mechanisms, so I'm going to close this.
Auto merge of rust-lang#13334 - nyurik:ascii-str-eq, r=xFrednet
c71f0be
Add manual_ignore_cast_cmp lint ```rust // bad fn compare(a: &str, b: &str) -> bool { a.to_ascii_lowercase() == b.to_ascii_lowercase() || a.to_ascii_lowercase() == "abc" } // good fn compare(a: &str, b: &str) -> bool { a.eq_ignore_ascii_case(b) || a.eq_ignore_ascii_case("abc") } ``` - [x] Followed [lint naming conventions][lint_naming] - [x] Added passing UI tests (including committed `.stderr` file) - [x] `cargo test` passes locally - [x] Executed `cargo dev update_lints` - [x] Added lint documentation - [x] Run `cargo dev fmt` changelog: New lint: [`manual_ignore_case_cmp`] `perf` [rust-lang#13334](rust-lang/rust-clippy#13334) Closes rust-lang#13204
No branches or pull requests
The
src/etc/{emacs, gedit, kate, vim, zsh}
folders should also be packaged. This would make it easier for package maintainers to include them.The text was updated successfully, but these errors were encountered: