Skip to content

Commit d92ec58

Browse files
[ruff] Add a comment about FA100 without implementing
1 parent ff5f252 commit d92ec58

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

pyproject.toml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -73,12 +73,14 @@ write_to = "pytest_asyncio/_version.py"
7373
line-length = 88
7474
format.docstring-code-format = true
7575
lint.select = [
76-
"B", # bugbear
77-
"D", # pydocstyle
78-
"E", # pycodestyle
79-
"F", # pyflakes
76+
"B", # bugbear
77+
"D", # pydocstyle
78+
"E", # pycodestyle
79+
"F", # pyflakes
80+
# "FA100", # add future annotations (not automated but would permit to update 'Union' via UP)
8081
"PGH004", # pygrep-hooks - Use specific rule codes when using noqa
8182
"PIE", # flake8-pie
83+
"PLE", # pylint error
8284
"PYI", # flake8-pyi
8385
"RUF", # ruff
8486
"T100", # flake8-debugger

0 commit comments

Comments
 (0)