Skip to content

Commit

Permalink
Auto merge of rust-lang#6763 - flip1995:fix_lintcheck, r=matthiaskrgr
Browse files Browse the repository at this point in the history
Fix lintcheck by excluding checked crates from workspace

r? `@matthiaskrgr`  cc `@camsteffen`

So `exclude` doesn't work with glob patterns, but it turns out that it works with `starts_with`.

changelog: none
  • Loading branch information
bors committed Feb 18, 2021
2 parents 7d535f6 + aea55d2 commit 2f815ec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ edition = "2018"
publish = false

[workspace]
exclude = ["clippy_dev", "mini-macro"]
exclude = ["clippy_dev", "mini-macro", "target/lintcheck/crates"]

[[bin]]
name = "cargo-clippy"
Expand Down

0 comments on commit 2f815ec

Please sign in to comment.