@@ -69,6 +69,17 @@ line-length = 120
6969lint.select = [
7070 " ALL" ,
7171]
72+ lint.ignore = [
73+ " ANN101" , # no type annotation for self
74+ " ANN401" , # allow Any as type annotation
75+ " COM812" , # Conflict with formatter
76+ " CPY" , # No copyright statements
77+ " D203" , # `one-blank-line-before-class` (D203) and `no-blank-line-before-class` (D211) are incompatible
78+ " D212" , # `multi-line-summary-first-line` (D212) and `multi-line-summary-second-line` (D213) are incompatible
79+ " ISC001" , # Conflict with formatter
80+ " S104" , # Possible binding to all interface
81+ ]
82+
7283lint.per-file-ignores."roots/**/*.py" = [
7384 " D" , # no docs
7485 " INP001" , # no namespace
@@ -89,16 +100,6 @@ lint.isort = { known-first-party = [
89100], required-imports = [
90101 " from __future__ import annotations" ,
91102] }
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- ]
102103
103104[tool .codespell ]
104105builtin = " clear,usage,en-GB_to_en-US"
0 commit comments