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 ca883a9 commit e118878Copy full SHA for e118878
1 file changed
pyproject.toml
@@ -99,8 +99,16 @@ ignore = [
99
"F403",
100
"F405",
101
"E501",
102
+ "ASYNC109", # TODO: migrate timeout params to asyncio.timeout progressively
103
"ASYNC230", # TODO: handle ASYNC230 in AstrBot
104
"ASYNC240", # TODO: handle ASYNC240 in AstrBot
105
+ "UP017", # TODO: migrate timezone.utc to datetime.UTC progressively
106
+ "UP035", # TODO: typing_extensions imports cleanup for 3.12 baseline
107
+ "UP036", # TODO: remove obsolete version guards incrementally
108
+ "UP040", # TODO: migrate TypeAlias to type statements gradually
109
+ "UP041", # TODO: migrate aliased TimeoutError usage gradually
110
+ "UP042", # TODO: migrate str+Enum to StrEnum gradually
111
+ "UP046", # TODO: migrate Generic class syntax to type parameters
112
]
113
114
[tool.pyright]
0 commit comments