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 ff5f252 commit d92ec58Copy full SHA for d92ec58
pyproject.toml
@@ -73,12 +73,14 @@ write_to = "pytest_asyncio/_version.py"
73
line-length = 88
74
format.docstring-code-format = true
75
lint.select = [
76
- "B", # bugbear
77
- "D", # pydocstyle
78
- "E", # pycodestyle
79
- "F", # pyflakes
+ "B", # bugbear
+ "D", # pydocstyle
+ "E", # pycodestyle
+ "F", # pyflakes
80
+ # "FA100", # add future annotations (not automated but would permit to update 'Union' via UP)
81
"PGH004", # pygrep-hooks - Use specific rule codes when using noqa
82
"PIE", # flake8-pie
83
+ "PLE", # pylint error
84
"PYI", # flake8-pyi
85
"RUF", # ruff
86
"T100", # flake8-debugger
0 commit comments