Skip to content

Commit 420f88e

Browse files
authored
style(python): ignore ann002 (#115)
1 parent 6bc5a16 commit 420f88e

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

python/{{cookiecutter.project_slug}}/pyproject.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,6 +159,7 @@ fixable = [
159159
"FURB",
160160
"RUF"
161161
]
162+
# ANN002 - missing-type-args
162163
# ANN003 - missing-type-kwargs
163164
# D203 - one-blank-line-before-class
164165
# D205 - blank-line-after-summary
@@ -176,7 +177,7 @@ fixable = [
176177
# PLC0206 - dict-index-missing-items
177178
# *ignored for compatibility with formatter
178179
ignore = [
179-
"ANN003",
180+
"ANN002", "ANN003",
180181
"D203", "D205", "D206", "D213", "D300", "D400", "D415",
181182
"E111", "E114", "E117", "E501",
182183
"W191",

0 commit comments

Comments
 (0)