From 50fdbc474c524188952e0ef7c02b0bd92df82357 Mon Sep 17 00:00:00 2001 From: "John L. Villalovos" Date: Fri, 3 Jun 2022 09:38:50 -0700 Subject: [PATCH] chore: enable pylint checks which require no changes Enabled the pylint checks that don't require any code changes. Previously these checks were disabled. --- pyproject.toml | 7 ------- 1 file changed, 7 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 35d30427a..f521546f1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -51,11 +51,8 @@ disable = [ "arguments-renamed", "attribute-defined-outside-init", "broad-except", - "consider-using-generator", "cyclic-import", "duplicate-code", - "fixme", - "implicit-str-concat", "import-outside-toplevel", "invalid-name", "missing-class-docstring", @@ -68,7 +65,6 @@ disable = [ "redefined-builtin", "redefined-outer-name", "signature-differs", - "super-with-arguments", "too-few-public-methods", "too-many-ancestors", "too-many-arguments", @@ -77,11 +73,8 @@ disable = [ "too-many-lines", "too-many-locals", "too-many-statements", - "unexpected-keyword-arg", "unsubscriptable-object", "unused-argument", - "useless-import-alias", - "useless-object-inheritance", ]