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 6b928db commit 218f33cCopy full SHA for 218f33c
pyproject.toml
@@ -97,6 +97,7 @@ ignore = [
97
"RUF022", # Unsorted __all__
98
"RUF023", # Unsorted __slots__
99
"B903", # Use dataclass / namedtuple
100
+ "RUF031", # parentheses for tuples in subscripts
101
# Ruff doesn't understand the globals() assignment; we test __all__
102
# directly in test_all_names_in___all__.
103
"F822",
@@ -111,10 +112,7 @@ ignore = [
111
112
"E306",
113
"E501",
114
"E701",
-]
115
-"src/test_typing_extensions.py" = [
116
# Harmful for tests if applied.
117
- "RUF031", # parentheses for tuples in subscripts
118
"RUF036", # None not at end of Union
119
"RUF041", # nested Literal
120
]
0 commit comments