@@ -69,6 +69,17 @@ line-length = 120
69
69
lint.select = [
70
70
" ALL" ,
71
71
]
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
+
72
83
lint.per-file-ignores."roots/**/*.py" = [
73
84
" D" , # no docs
74
85
" INP001" , # no namespace
@@ -89,16 +100,6 @@ lint.isort = { known-first-party = [
89
100
], required-imports = [
90
101
" from __future__ import annotations" ,
91
102
] }
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
- ]
102
103
103
104
[tool .codespell ]
104
105
builtin = " clear,usage,en-GB_to_en-US"
0 commit comments