Compare commits

..

1 Commits

Author SHA1 Message Date
didericis 58169e2ce9 fix: remove deprecated/unrecognized pylint options from config
Lint and Type Check / lint (push) Failing after 7m3s
test / unit (pull_request) Successful in 43s
test / integration (pull_request) Failing after 52s
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 <noreply@anthropic.com>
2026-06-03 23:14:28 -04:00
-6
View File
@@ -366,12 +366,6 @@ single-line-class-stmt=no
single-line-if-stmt=no single-line-if-stmt=no
[IMPORTS]
# Force import order to recognize a module as part of a third party library.
known-third-party=enchant
[LOGGING] [LOGGING]
# The type of string formatting that logging methods do. `old` means using % # The type of string formatting that logging methods do. `old` means using %