diff --git a/noxfile.py b/noxfile.py index 3e44320..5af7786 100644 --- a/noxfile.py +++ b/noxfile.py @@ -9,7 +9,7 @@ DIR = Path(__file__).parent.resolve() nox.needs_version = ">=2024.3.2" -nox.options.sessions = ["lint", "pylint", "tests"] +nox.options.sessions = ["lint", "tests"] nox.options.default_venv_backend = "uv|virtualenv" diff --git a/pyproject.toml b/pyproject.toml index 27d788c..beba76f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -131,26 +131,3 @@ ignore = [ [tool.ruff.lint.isort] combine-as-imports = true extra-standard-library = ["typing_extensions"] - - -[tool.pylint] -py-version = "3.10" -ignore-paths = [".*/_version.py"] -reports.output-format = "colorized" -similarities.ignore-imports = "yes" -messages_control.disable = [ - "design", - "duplicate-code", # too small of a project - "fixme", - "function-redefined", # for plum-dispatch - "line-too-long", - "missing-module-docstring", - "missing-function-docstring", - "no-member", # handled by mypy - "no-value-for-parameter", # for plum-dispatch - "too-many-function-args", # handled by testing - "unused-argument", # handled by ruff - "unused-wildcard-import", # handled by ruff - "wildcard-import", # handled by ruff - "wrong-import-position", -]