We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6450b7d commit 7794952Copy full SHA for 7794952
pyproject.toml
@@ -63,6 +63,8 @@ ignore = [
63
"S101", # use of assert here is a known quantity, blame typing memes
64
"S311", # Yes, I know that standard pseudo-random generators are not suitable for cryptographic purposes
65
"SIM105", # supressable exception, I'm not paying the overhead of contextlib.supress for stylistic choices.
66
+ "TC001", # I prefer to avoid if TYPE_CHECKING
67
+ "TC002", # I prefer to avoid if TYPE_CHECKING
68
"TC003", # I prefer to avoid if TYPE_CHECKING
69
"UP007", # "Use | For Union" doesn't account for typevar tuple unpacking.
70
"UP031", # No, I like % formatting more for some things...
0 commit comments