diff options
author | John L. Villalovos <john@sodarock.com> | 2022-06-03 09:38:50 -0700 |
---|---|---|
committer | John L. Villalovos <john@sodarock.com> | 2022-06-04 09:18:22 -0700 |
commit | 50fdbc474c524188952e0ef7c02b0bd92df82357 (patch) | |
tree | e6a12dbcd9f90ed344c6da6e72a43bba5c64487c | |
parent | 1e8916438f7c4f67bd7745103b870d84f6ba2d01 (diff) | |
download | gitlab-50fdbc474c524188952e0ef7c02b0bd92df82357.tar.gz |
chore: enable pylint checks which require no changes
Enabled the pylint checks that don't require any code changes.
Previously these checks were disabled.
-rw-r--r-- | pyproject.toml | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/pyproject.toml b/pyproject.toml index 35d3042..f521546 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", ] |