Skip to content

Commit

Permalink
tweak pyproject config
Browse files Browse the repository at this point in the history
  • Loading branch information
zxdavb committed Aug 31, 2024
1 parent b1d3955 commit acc3394
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -202,14 +202,14 @@
]

ignore = [
"ANN101",
"ANN401",
"B011", # Do not call assert False since python -O removes these calls
"COM812",
"G004",
"E501", # Line too long
"EXE001",
"S101",
"ANN101", # Missing type annotation for function argument {name}
"ANN401", # Dynamically typed expressions (typing.Any) are disallowed in {name}
"B011", # Do not call assert False since python -O removes these calls
"COM812", # Trailing comma missing
"G004", # Logging statement uses f-string
"E501", # Line too long
"EXE001", # Shebang is present but file is not executable
"S101", # Use of assert detected
"SIM102", # Use a single `if` statement instead of nested `if` statements
"SIM114", # Combine `if` branches using logical `or` operator
"UP009", # UTF-8 encoding declaration is unnecessary
Expand Down

0 comments on commit acc3394

Please sign in to comment.