Skip to content

Commit 41eaa46

Browse files
authored
fix: resolve pylint config errors breaking super-linter
## 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>
1 parent 8e46b1a commit 41eaa46

1 file changed

Lines changed: 0 additions & 4 deletions

File tree

.github/linters/.python-lint

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -103,10 +103,6 @@ recursive=no
103103
# source root.
104104
source-roots=
105105

106-
# When enabled, pylint would attempt to guess common misconfiguration and emit
107-
# user-friendly hints instead of false-positive error messages.
108-
suggestion-mode=yes
109-
110106
# Allow loading of arbitrary C extensions. Extensions are imported into the
111107
# active Python interpreter and may run arbitrary code.
112108
unsafe-load-any-extension=no

0 commit comments

Comments
 (0)