Create clippy_config crate, hide internal representation from docs#11685
Merged
bors merged 2 commits intorust-lang:masterfrom Oct 24, 2023
Merged
Create clippy_config crate, hide internal representation from docs#11685bors merged 2 commits intorust-lang:masterfrom
clippy_config crate, hide internal representation from docs#11685bors merged 2 commits intorust-lang:masterfrom
Conversation
flip1995
reviewed
Oct 21, 2023
Contributor
|
☔ The latest upstream changes (presumably #11694) made this pull request unmergeable. Please resolve the merge conflicts. |
68a167f to
43d80a4
Compare
Contributor
|
☔ The latest upstream changes (presumably #11699) made this pull request unmergeable. Please resolve the merge conflicts. |
43d80a4 to
436dd19
Compare
Member
|
@bors r+ Thanks! |
Contributor
Contributor
bors
added a commit
that referenced
this pull request
Oct 24, 2023
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
Contributor
|
💔 Test failed - checks-action_test |
436dd19 to
7df1c8a
Compare
Member
Author
|
Needed an @bors r=flip1995 |
Contributor
Contributor
Contributor
|
☀️ Test successful - checks-action_dev_test, checks-action_remark_test, checks-action_test |
1 similar comment
Contributor
|
☀️ Test successful - checks-action_dev_test, checks-action_remark_test, checks-action_test |
This was referenced Oct 24, 2023
bors
added a commit
that referenced
this pull request
Nov 6, 2023
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
fmease
added a commit
to fmease/rust
that referenced
this pull request
Nov 8, 2023
…ertlarsan68 Document clippy_config in nightly-rustc docs A new clippy crate added in rust-lang/rust-clippy#11685
matthiaskrgr
added a commit
to matthiaskrgr/rust
that referenced
this pull request
Nov 8, 2023
…ertlarsan68 Document clippy_config in nightly-rustc docs A new clippy crate added in rust-lang/rust-clippy#11685
rust-timer
added a commit
to rust-lang-ci/rust
that referenced
this pull request
Nov 8, 2023
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
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
r? @flip1995
The first commit moves a decent chunk of code out of
clippy_lints/clippy_utilsinto a new crateclippy_configThe 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 ofDebugoutputchangelog: none