We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6f8a10a commit bc62e08Copy full SHA for bc62e08
dev/pylint_check.py
@@ -222,6 +222,9 @@ def main():
222
cmd.append("--variable-rgx=[a-z][a-z0-9_]{0,40}$")
223
224
# Increase the max number of positional arguments.
225
+ # Many legacy functions in this codebase use 25+ positional arguments.
226
+ # We should refactor these functions to use fewer parameters or
227
+ # configuration objects in the future.
228
cmd.append("--max-positional-arguments=30")
229
230
# Run pylint and check output
0 commit comments