@@ -144,26 +144,27 @@ for path in pathlib.Path.cwd().parents:
144
144
[tool .pylint .message_control ]
145
145
max-line-length = 88
146
146
disable = [
147
- ' cyclic-import' , # We have tail imports all over
148
- ' fixme' , # Our workflow is to tag for future fixes
149
- ' invalid-name' , # Flake8 covers our naming convention requirements
150
- ' line-too-long' , # Let Black/Ruff handle this
151
- ' missing-class-docstring' , # Backlog
152
- ' missing-function-docstring' , # Backlog
153
- ' no-member' , # Pylint doesn't understand mixins referring to main class members
154
- ' redefined-builtin' , # Covered by Flake8 already
155
- ' too-few-public-methods' , # Data classes and validator classes have few methods
147
+ ' cyclic-import' , # We have tail imports all over
148
+ ' fixme' , # Our workflow is to tag for future fixes
149
+ ' invalid-name' , # Flake8 covers our naming convention requirements
150
+ ' line-too-long' , # Let Black/Ruff handle this
151
+ ' missing-class-docstring' , # Backlog
152
+ ' missing-function-docstring' , # Backlog
153
+ ' no-member' , # Pylint doesn't understand mixins referring to main class members
154
+ ' redefined-builtin' , # Covered by Flake8 already
155
+ ' too-few-public-methods' , # Data classes and validator classes have few methods
156
156
' too-many-arguments' ,
157
157
' too-many-branches' ,
158
158
' too-many-locals' ,
159
- ' too-many-instance-attributes' , # Some instances are just bags of attributes
159
+ ' too-many-instance-attributes' , # Some instances are just bags of attributes
160
160
' too-many-lines' ,
161
161
' too-many-nested-blocks' ,
162
+ ' too-many-positional-arguments' ,
162
163
' too-many-return-statements' ,
163
164
' too-many-statements' ,
164
- ' unused-argument' , # Arguments required for spec compatibility aren't always used
165
- ' wrong-import-position' , # Imports after code are sometimes required
166
- ' wrong-import-order' , # Let black and isort handle this
165
+ ' unused-argument' , # Arguments required for spec compatibility aren't always used
166
+ ' wrong-import-position' , # Imports after code are sometimes required
167
+ ' wrong-import-order' , # Let black and isort handle this
167
168
]
168
169
169
170
[tool .bandit ]
0 commit comments