From ac1f41842a7451ac3054083a4f86dabf8a608eef Mon Sep 17 00:00:00 2001 From: Lance Edgar Date: Sun, 31 Aug 2025 21:24:14 -0500 Subject: [PATCH] test: swap pylint config around to explicitly disable things we haven't addressed many yet, but now we know what needs doing.. --- .pylintrc | 63 +++++++++++++++++++++++++++++++++++++++++++++---------- 1 file changed, 52 insertions(+), 11 deletions(-) diff --git a/.pylintrc b/.pylintrc index ef4dbc4..1454690 100644 --- a/.pylintrc +++ b/.pylintrc @@ -1,14 +1,55 @@ # -*- mode: conf; -*- [MESSAGES CONTROL] -disable=all -enable= - empty-docstring, - inconsistent-return-statements, - no-else-return, - redefined-argument-from-local, - too-many-branches, - too-many-instance-attributes, - too-many-return-statements, - unused-import, - unused-variable, +disable=fixme, + abstract-method, + anomalous-backslash-in-string, + arguments-differ, + arguments-renamed, + assignment-from-no-return, + attribute-defined-outside-init, + bare-except, + broad-exception-caught, + consider-using-dict-comprehension, + consider-using-dict-items, + consider-using-generator, + consider-using-get, + consider-using-set-comprehension, + dangerous-default-value, + deprecated-method, + duplicate-code, + implicit-str-concat, + import-outside-toplevel, + invalid-name, + isinstance-second-argument-not-valid-type, + keyword-arg-before-vararg, + missing-function-docstring, + missing-module-docstring, + no-else-raise, + no-member, + not-callable, + protected-access, + redefined-outer-name, + simplifiable-if-expression, + singleton-comparison, + super-init-not-called, + too-few-public-methods, + too-many-arguments, + too-many-lines, + too-many-locals, + too-many-nested-blocks, + too-many-positional-arguments, + too-many-public-methods, + too-many-statements, + ungrouped-imports, + unidiomatic-typecheck, + unnecessary-comprehension, + unnecessary-lambda, + unnecessary-lambda-assignment, + unspecified-encoding, + unused-argument, + unused-wildcard-import, + use-a-generator, + use-dict-literal, + wildcard-import, + wrong-import-order,