We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9a977cc commit 9036a4bCopy full SHA for 9036a4b
pyproject.toml
@@ -70,12 +70,14 @@ write_to = "pytest_asyncio/_version.py"
70
line-length = 88
71
format.docstring-code-format = true
72
lint.select = [
73
- "B", # bugbear
74
- "D", # pydocstyle
75
- "E", # pycodestyle
76
- "F", # pyflakes
+ "B", # bugbear
+ "D", # pydocstyle
+ "E", # pycodestyle
+ "F", # pyflakes
77
+ # "FA100", # add future annotations (not automated but would permit to update 'Union' via UP)
78
"PGH004", # pygrep-hooks - Use specific rule codes when using noqa
79
"PIE", # flake8-pie
80
+ "PLE", # pylint error
81
"PYI", # flake8-pyi
82
"RUF", # ruff
83
"T100", # flake8-debugger
0 commit comments