From 58169e2ce94a9db6f96fd48a03a567d6f099ced4 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, known-third-party 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 | 39 --------------------------------------- 1 file changed, 39 deletions(-) diff --git a/.pylintrc b/.pylintrc index 1b4887c..019d403 100644 --- a/.pylintrc +++ b/.pylintrc @@ -366,45 +366,6 @@ single-line-class-stmt=no 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] # The type of string formatting that logging methods do. `old` means using %