@@ -80,6 +80,16 @@ format.docstring-code-format = true
8080lint.select = [
8181 " ALL" ,
8282]
83+ lint.ignore = [
84+ " ANN101" , # no type annotation for self
85+ " ANN401" , # allow Any as type annotation
86+ " COM812" , # Conflict with formatter
87+ " CPY" , # No copyright statements
88+ " D203" , # `one-blank-line-before-class` (D203) and `no-blank-line-before-class` (D211) are incompatible
89+ " D212" , # `multi-line-summary-first-line` (D212) and `multi-line-summary-second-line` (D213) are incompatible
90+ " ISC001" , # Conflict with formatter
91+ " S104" , # Possible binding to all interface
92+ ]
8393lint.per-file-ignores."tests/**/*.py" = [
8494 " D" , # don't care about documentation in tests
8595 " FBT" , # don"t care about booleans as positional arguments in tests
@@ -97,16 +107,6 @@ lint.isort = { known-first-party = [
97107], required-imports = [
98108 " from __future__ import annotations" ,
99109] }
100- lint.ignore = [
101- " ANN101" , # no type annotation for self
102- " ANN401" , # allow Any as type annotation
103- " COM812" , # Conflict with formatter
104- " CPY" , # No copyright statements
105- " D203" , # `one-blank-line-before-class` (D203) and `no-blank-line-before-class` (D211) are incompatible
106- " D212" , # `multi-line-summary-first-line` (D212) and `multi-line-summary-second-line` (D213) are incompatible
107- " ISC001" , # Conflict with formatter
108- " S104" , # Possible binding to all interface
109- ]
110110lint.preview = true
111111
112112[tool .codespell ]
0 commit comments