-
Notifications
You must be signed in to change notification settings - Fork 1.6k
New issue
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
Create clippy_config
crate, hide internal representation from docs
#11685
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Mostly NITs.
☔ The latest upstream changes (presumably #11694) made this pull request unmergeable. Please resolve the merge conflicts. |
68a167f
to
43d80a4
Compare
☔ The latest upstream changes (presumably #11699) made this pull request unmergeable. Please resolve the merge conflicts. |
43d80a4
to
436dd19
Compare
@bors r+ Thanks! |
Create `clippy_config` crate, hide internal representation from docs r? `@flip1995` The first commit moves a decent chunk of code out of `clippy_lints`/`clippy_utils` into a new crate `clippy_config` The second commit changes how `--explain`, the book and the site render configuration values. The internal type is now hidden and the displayed defaults are now valid TOML values instead of `Debug` output changelog: none
💔 Test failed - checks-action_test |
436dd19
to
7df1c8a
Compare
Needed an @bors r=flip1995 |
☀️ Test successful - checks-action_dev_test, checks-action_remark_test, checks-action_test |
1 similar comment
☀️ Test successful - checks-action_dev_test, checks-action_remark_test, checks-action_test |
update references of old `msrvs` and `conf` paths In #11685, `clippy_lints::utils::conf` and `clippy_utils::msrvs` were moved to a separate `clippy_config` crate. I noticed that not all references to those paths were updated, so this small PR intends to fix those. changelog: none
…ertlarsan68 Document clippy_config in nightly-rustc docs A new clippy crate added in rust-lang/rust-clippy#11685
…ertlarsan68 Document clippy_config in nightly-rustc docs A new clippy crate added in rust-lang/rust-clippy#11685
Rollup merge of rust-lang#117667 - Alexendoo:doc-clippy-config, r=albertlarsan68 Document clippy_config in nightly-rustc docs A new clippy crate added in rust-lang/rust-clippy#11685
r? @flip1995
The first commit moves a decent chunk of code out of
clippy_lints
/clippy_utils
into a new crateclippy_config
The second commit changes how
--explain
, the book and the site render configuration values. The internal type is now hidden and the displayed defaults are now valid TOML values instead ofDebug
outputchangelog: none