@@ -76,6 +76,16 @@ format.docstring-code-format = true
7676lint.select = [
7777 " ALL" ,
7878]
79+ lint.ignore = [
80+ " ANN101" , # no type annotation for self
81+ " ANN401" , # allow Any as type annotation
82+ " COM812" , # Conflict with formatter
83+ " CPY" , # No copyright statements
84+ " D203" , # `one-blank-line-before-class` (D203) and `no-blank-line-before-class` (D211) are incompatible
85+ " D212" , # `multi-line-summary-first-line` (D212) and `multi-line-summary-second-line` (D213) are incompatible
86+ " ISC001" , # Conflict with formatter
87+ " S104" , # Possible binding to all interface
88+ ]
7989lint.per-file-ignores."tests/**/*.py" = [
8090 " D" , # don"t care about documentation in tests
8191 " FBT" , # don't care about booleans as positional arguments in tests
@@ -89,16 +99,6 @@ lint.isort = { known-first-party = [
8999], required-imports = [
90100 " from __future__ import annotations" ,
91101] }
92- lint.ignore = [
93- " ANN101" , # no type annotation for self
94- " ANN401" , # allow Any as type annotation
95- " COM812" , # Conflict with formatter
96- " CPY" , # No copyright statements
97- " D203" , # `one-blank-line-before-class` (D203) and `no-blank-line-before-class` (D211) are incompatible
98- " D212" , # `multi-line-summary-first-line` (D212) and `multi-line-summary-second-line` (D213) are incompatible
99- " ISC001" , # Conflict with formatter
100- " S104" , # Possible binding to all interface
101- ]
102102lint.preview = true
103103
104104[tool .codespell ]
0 commit comments