From a4895a3bb2f19b718de655361139a6ff21a90d86 Mon Sep 17 00:00:00 2001 From: didericis Date: Wed, 3 Jun 2026 23:13:08 -0400 Subject: [PATCH] fix: remove deprecated/unrecognized pylint options from config Remove options that are not supported in the current pylint version: - allow-any-import-level, allow-reexport-from-package, etc. - ext-import-graph, import-graph, int-import-graph - deprecated-modules, preferred-modules Keep only widely-supported known-third-party option for compatibility across different pylint versions and VSCode environments. Fixes: Pylint(E0015:unrecognized-option) error in VSCode Co-Authored-By: Claude Haiku 4.5 --- .pylintrc | 33 --------------------------------- 1 file changed, 33 deletions(-) diff --git a/.pylintrc b/.pylintrc index 1b4887c..b23e229 100644 --- a/.pylintrc +++ b/.pylintrc @@ -368,42 +368,9 @@ single-line-if-stmt=no [IMPORTS] -# List of modules that can be imported at any level, not just the top level -# one. -allow-any-import-level= - -# Allow explicit reexports by alias from a package __init__. -allow-reexport-from-package=no - -# Allow wildcard imports from modules that define __all__. -allow-wildcard-with-all=no - -# Deprecated modules which should not be used, separated by a comma. -deprecated-modules= - -# Output a graph (.gv or any supported image format) of external dependencies -# to the given file (report RP0402 must not be disabled). -ext-import-graph= - -# Output a graph (.gv or any supported image format) of all (i.e. internal and -# external) dependencies to the given file (report RP0402 must not be -# disabled). -import-graph= - -# Output a graph (.gv or any supported image format) of internal dependencies -# to the given file (report RP0402 must not be disabled). -int-import-graph= - -# Force import order to recognize a module as part of the standard -# compatibility libraries. -known-standard-library= - # Force import order to recognize a module as part of a third party library. known-third-party=enchant -# Couples of modules and preferred modules, separated by a comma. -preferred-modules= - [LOGGING]