mirror of https://github.com/astral-sh/ruff
parent
2b3550c85f
commit
9384ba4b91
|
|
@ -316,7 +316,7 @@ mod schema {
|
||||||
// Filter out all test-only rules
|
// Filter out all test-only rules
|
||||||
#[cfg(any(feature = "test-rules", test))]
|
#[cfg(any(feature = "test-rules", test))]
|
||||||
#[allow(clippy::used_underscore_binding)]
|
#[allow(clippy::used_underscore_binding)]
|
||||||
if _rule.starts_with("RUF9") {
|
if _rule.starts_with("RUF9") || _rule == "PLW0101" {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -3653,7 +3653,6 @@
|
||||||
"PLW0",
|
"PLW0",
|
||||||
"PLW01",
|
"PLW01",
|
||||||
"PLW010",
|
"PLW010",
|
||||||
"PLW0101",
|
|
||||||
"PLW0108",
|
"PLW0108",
|
||||||
"PLW012",
|
"PLW012",
|
||||||
"PLW0120",
|
"PLW0120",
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue