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 2f441e1 commit b77f97eCopy full SHA for b77f97e
pyproject.toml
@@ -206,6 +206,7 @@ extend-exclude = [
206
207
[tool.ruff.lint]
208
extend-select = [
209
+ "ANN", # flake8-annotations
210
"B", # flake8-bugbear
211
"C4", # flake8-comprehensions
212
"FLY", # flynt
@@ -222,6 +223,10 @@ extend-select = [
222
223
"UP", # pyupgrade
224
]
225
ignore = [
226
+ "ANN003",
227
+ "ANN101",
228
+ "ANN102",
229
+ "ANN401",
230
"PT004", # deprecated
231
"PT011", # TODO: apply this rule
232
"PT012", # TODO: apply this rule
@@ -247,6 +252,9 @@ ignore = [
247
252
"ISC002",
248
253
249
254
255
+[tool.ruff.lint.extend-per-file-ignores]
256
+"tests/v3/**" = ["ANN001", "ANN201"]
257
+
250
258
[tool.mypy]
251
259
python_version = "3.11"
260
ignore_missing_imports = true
0 commit comments