-
Notifications
You must be signed in to change notification settings - Fork 148
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
pylint: exclude rule: too-many-positional-arguments (code: R0917) #1299
Conversation
New version of Pylint have the rule for checking of positional arguments - complaining when more than 4 positional arguments exists. We do not want to refactor the code to make it happy and the default value cannot be set right now - that's planned for future Pylint versions at this moment. So excluding this rule. For more info: * https://pylint.readthedocs.io/en/latest/user_guide/messages/refactor/too-many-positional-arguments.html
Thank you for contributing to the Leapp project!Please note that every PR needs to comply with the Leapp Guidelines and must pass all tests in order to be mergeable.
Packit will automatically schedule regression tests for this PR's build and latest upstream leapp build.
Note that first time contributors cannot run tests automatically - they need to be started by a reviewer. It is possible to schedule specific on-demand tests as well. Currently 2 test sets are supported,
See other labels for particular jobs defined in the Please open ticket in case you experience technical problem with the CI. (RH internal only) Note: In case there are problems with tests not being triggered automatically on new PR/commit or pending for a long time, please contact leapp-infra. |
@evgeni thanks! merging |
Ignore pylint's options: * too-many-lines * too-many-positional-arguments * use-yield-from Some of these options cannot be used (python2.7 compat) or configured. See: oamg/leapp-repository#1299
Ignore pylint's options: * too-many-lines * too-many-positional-arguments * use-yield-from Some of these options cannot be used (python2.7 compat) or configured. See: oamg/leapp-repository#1299
Ignore pylint's options: * too-many-lines * too-many-positional-arguments * use-yield-from Some of these options cannot be used (python2.7 compat) or configured. See: oamg/leapp-repository#1299
Ignore pylint's options: * too-many-lines * too-many-positional-arguments * use-yield-from Some of these options cannot be used (python2.7 compat) or configured. See: oamg/leapp-repository#1299
New version of Pylint have the rule for checking of positional arguments - complaining when more than 4 positional arguments exists. We do not want to refactor the code to make it happy and the default value cannot be set right now - that's planned for future Pylint versions at this moment. So excluding this rule.
For more info: