@@ -112,33 +112,34 @@ good-names = [
112112# too-many-ancestors - it's too strict.
113113# wrong-import-order - isort guards this
114114disable = [
115- " format" ,
116115 " abstract-method" ,
117116 " consider-using-f-string" ,
118117 " cyclic-import" ,
119118 " duplicate-code" ,
120119 " fixme" ,
120+ " format" ,
121121 " inconsistent-return-statements" ,
122122 " locally-disabled" ,
123+ " missing-class-docstring" ,
124+ " missing-function-docstring" ,
125+ " missing-module-docstring" ,
123126 " not-context-manager" ,
127+ " raise-missing-from" ,
124128 " too-few-public-methods" ,
125129 " too-many-ancestors" ,
126130 " too-many-arguments" ,
131+ " too-many-boolean-expressions" ,
127132 " too-many-branches" ,
128133 " too-many-instance-attributes" ,
129134 " too-many-lines" ,
130135 " too-many-locals" ,
136+ " too-many-positional-arguments" ,
131137 " too-many-public-methods" ,
132138 " too-many-return-statements" ,
133139 " too-many-statements" ,
134- " too-many-boolean-expressions " ,
140+ " too-many-nested-blocks " ,
135141 " unused-argument" ,
136142 " wrong-import-order" ,
137- " raise-missing-from" ,
138- " missing-class-docstring" ,
139- " missing-function-docstring" ,
140- " missing-module-docstring" ,
141- " too-many-nested-blocks" ,
142143]
143144# for now (20201031) added the below while we are codemerging/-improving
144145# missing-class-docstring
0 commit comments