From 41eaa4636a2c546af7c1f640080d49dc971f7096 Mon Sep 17 00:00:00 2001 From: Jason Meridth Date: Tue, 24 Feb 2026 21:06:37 -0600 Subject: [PATCH] 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 --- .github/linters/.python-lint | 4 ---- 1 file changed, 4 deletions(-) diff --git a/.github/linters/.python-lint b/.github/linters/.python-lint index 156ea33..92dc261 100644 --- a/.github/linters/.python-lint +++ b/.github/linters/.python-lint @@ -103,10 +103,6 @@ recursive=no # source root. source-roots= -# When enabled, pylint would attempt to guess common misconfiguration and emit -# user-friendly hints instead of false-positive error messages. -suggestion-mode=yes - # Allow loading of arbitrary C extensions. Extensions are imported into the # active Python interpreter and may run arbitrary code. unsafe-load-any-extension=no