Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
python: pylintrc: get rid of removed options
When using pylint v2.14, you can get a bunch of errors like: /action/lib/.automation/.python-lint:1:0: E0015: Unrecognized option found: no-space-check (unrecognized-option) /action/lib/.automation/.python-lint:1:0: R0022: Useless option value for '--disable', 'print-statement' was removed from pylint, see pylint-dev/pylint#4942. (useless-option-value) /action/lib/.automation/.python-lint:1:0: R0022: Useless option value for '--disable', 'parameter-unpacking' was removed from pylint, see pylint-dev/pylint#4942. (useless-option-value) /action/lib/.automation/.python-lint:1:0: R0022: Useless option value for '--disable', 'unpacking-in-except' was removed from pylint, see pylint-dev/pylint#4942. (useless-option-value) Most of them have beed removed here: pylint-dev/pylint#4942 But raising exceptions when using removed options was only added in 2.14 in pylint-dev/pylint#6826 We still need to actualize this config with new options, but at least we won't get errors with this config.
- Loading branch information