Implement E741 (#137)

This commit is contained in:
Harutaka Kawamura 2022-09-12 01:30:28 +09:00 committed by GitHub
parent 81ae3bfc94
commit c4565fe0f5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
10 changed files with 275 additions and 1 deletions

View file

@ -3,6 +3,7 @@ use ruff::checks::{CheckKind, RejectedCmpop};
fn main() {
let mut check_kinds: Vec<CheckKind> = vec![
CheckKind::AmbiguousVariableName("...".to_string()),
CheckKind::AssertTuple,
CheckKind::DefaultExceptNotLast,
CheckKind::DoNotAssignLambda,