diff --git a/.github/workflows/linter.yml b/.github/workflows/linter.yml index 7d80a5a..9c6bec7 100644 --- a/.github/workflows/linter.yml +++ b/.github/workflows/linter.yml @@ -61,7 +61,3 @@ jobs: - name: Run mypy run: | mypy --install-types --non-interactive - - - name: Run pylint - run: | - pylint artistools diff --git a/pyproject.toml b/pyproject.toml index 3e6e867..9ce0b5b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -59,35 +59,6 @@ warn_unreachable = false warn_unused_configs = true warn_unused_ignores = true - -[tool.pylint.'MESSAGES CONTROL'] -max-line-length = 120 -disable = """ - broad-exception-caught, - fixme, - missing-function-docstring, - missing-module-docstring, - import-outside-toplevel, - invalid-name, - line-too-long, - protected-access, - redefined-outer-name, - too-many-arguments, - too-many-branches, - too-many-function-args, - too-many-lines, - too-many-locals, - too-many-nested-blocks, - too-many-statements, - unbalanced-tuple-unpacking, - unused-argument, - unused-variable, - unspecified-encoding, - unsupported-assignment-operation, - C, - R, -""" - [tool.pyright] exclude=['**/node_modules','**/__pycache__','**/.*', 'build', 'dist'] useLibraryCodeForTypes = false