@@ -149,20 +149,22 @@ lint.select = [
149149 " ALL" ,
150150]
151151lint.ignore = [
152- " ANN401" , # Dynamically typed expressions (typing.Any) are disallowed in `arg`"
153- " COM812" , # conflicts with formatter
154- " CPY" , # No copyright header
155- " D" , # ignore documentation for now
156- " D203" , # `one-blank-line-before-class` (D203) and `no-blank-line-before-class` (D211) are incompatible
157- " D212" , # `multi-line-summary-first-line` (D212) and `multi-line-summary-second-line` (D213) are incompatible
158- " DOC201" , # no restructuredtext support yet
159- " DOC402" , # no restructuredtext support yet
160- " DOC501" , # broken with sphinx docs
161- " INP001" , # no implicit namespaces here
162- " ISC001" , # conflicts with formatter
152+ " ANN401" , # Dynamically typed expressions (typing.Any) are disallowed in `arg`"
153+ " COM812" , # conflicts with formatter
154+ " CPY" , # No copyright header
155+ " D" , # ignore documentation for now
156+ " D203" , # `one-blank-line-before-class` (D203) and `no-blank-line-before-class` (D211) are incompatible
157+ " D212" , # `multi-line-summary-first-line` (D212) and `multi-line-summary-second-line` (D213) are incompatible
158+ " DOC201" , # no restructuredtext support yet
159+ " DOC402" , # no restructuredtext support yet
160+ " DOC501" , # broken with sphinx docs
161+ " INP001" , # no implicit namespaces here
162+ " ISC001" , # conflicts with formatter
163+
163164 " LOG015" , # we require use of the root logger for reporting
164165 " PLR0914" , # # Too many local variables
165166 " PLR0917" , # # Too many positional arguments
167+ " RUF067" , # `__init__` module should only contain docstrings and re-exports
166168 " S104" , # Possible binding to all interfaces
167169 " S404" , # Using subprocess is alright.
168170 " S603" , # Using subprocess is alright.
0 commit comments