fix: resolve pylint config errors breaking super-linter#482
Open
jmeridth wants to merge 1 commit intogithub:mainfrom
Open
fix: resolve pylint config errors breaking super-linter#482jmeridth wants to merge 1 commit intogithub:mainfrom
jmeridth wants to merge 1 commit intogithub:mainfrom
Conversation
## What Removed the deprecated `suggestion-mode` option from the pylint config. ## Why The `suggestion-mode` option was removed in newer versions of pylint, causing an `E0015: Unrecognized option` error that fails the super-linter CI job. ## Notes - These errors were hidden until super-linter upgraded its bundled pylint version - Saw these errors [here](https://github.com/github-community-projects/contributors/actions/runs/22372943481/job/64756293990?pr=394#step:5:488) which made me check the version of python-lint in this repo and the config. Same issue here. - `suggestion-mode` was [removed in 4.0 of pylint](https://pylint.readthedocs.io/en/latest/whatsnew/4/4.0/index.html) Signed-off-by: Jason Meridth <jmeridth@gmail.com>
Contributor
There was a problem hiding this comment.
Pull request overview
This PR updates the repository’s Python lint configuration used by Super Linter to avoid CI failures caused by a deprecated Pylint option.
Changes:
- Removed the deprecated
suggestion-modesetting from the Pylint config to preventE0015: Unrecognized optionon newer Pylint versions.
zkoppert
approved these changes
Feb 25, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What
Removed the deprecated
suggestion-modeoption from the pylint config.Why
The
suggestion-modeoption was removed in newer versions of pylint, causing anE0015: Unrecognized optionerror that fails the super-linter CI job.Notes
suggestion-modewas removed in 4.0 of pylintPull Request
Proposed Changes
Readiness Checklist
Author/Contributor
make lintand fix any issues that you have introducedmake testand ensure you have test coverage for the lines you are introducing