Skip to content

Commit 9036a4b

Browse files
[ruff] Add a comment about FA100 without implementing
1 parent 9a977cc commit 9036a4b

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

pyproject.toml

+6-4
Original file line numberDiff line numberDiff line change
@@ -70,12 +70,14 @@ write_to = "pytest_asyncio/_version.py"
7070
line-length = 88
7171
format.docstring-code-format = true
7272
lint.select = [
73-
"B", # bugbear
74-
"D", # pydocstyle
75-
"E", # pycodestyle
76-
"F", # pyflakes
73+
"B", # bugbear
74+
"D", # pydocstyle
75+
"E", # pycodestyle
76+
"F", # pyflakes
77+
# "FA100", # add future annotations (not automated but would permit to update 'Union' via UP)
7778
"PGH004", # pygrep-hooks - Use specific rule codes when using noqa
7879
"PIE", # flake8-pie
80+
"PLE", # pylint error
7981
"PYI", # flake8-pyi
8082
"RUF", # ruff
8183
"T100", # flake8-debugger

0 commit comments

Comments
 (0)