Skip to content

Commit b25558b

Browse files
committed
Auto merge of #11685 - Alexendoo:clippy_config, r=flip1995
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
2 parents 033c763 + 436dd19 commit b25558b

File tree

90 files changed

+577
-555
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

90 files changed

+577
-555
lines changed

.github/workflows/clippy_bors.yml

+4
Original file line numberDiff line numberDiff line change
@@ -123,6 +123,10 @@ jobs:
123123
run: cargo test --features deny-warnings,internal
124124
working-directory: clippy_utils
125125

126+
- name: Test clippy_config
127+
run: cargo test --features deny-warnings
128+
working-directory: clippy_config
129+
126130
- name: Test rustc_tools_util
127131
run: cargo test --features deny-warnings
128132
working-directory: rustc_tools_util

Cargo.toml

+2-1
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,12 @@ name = "clippy-driver"
2121
path = "src/driver.rs"
2222

2323
[dependencies]
24+
clippy_config = { path = "clippy_config" }
2425
clippy_lints = { path = "clippy_lints" }
2526
rustc_tools_util = "0.3.0"
2627
tempfile = { version = "3.2", optional = true }
2728
termize = "0.1"
28-
color-print = "0.3.4" # Sync version with Cargo
29+
color-print = "0.3.4"
2930
anstream = "0.5.0"
3031

3132
[dev-dependencies]

0 commit comments

Comments
 (0)