Skip to content

Commit

Permalink
🔧 config(pylint): remove
Browse files Browse the repository at this point in the history
  • Loading branch information
nstarman committed Jan 6, 2025
1 parent aefa264 commit fe5f42e
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 24 deletions.
2 changes: 1 addition & 1 deletion noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"


Expand Down
23 changes: 0 additions & 23 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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",
]

0 comments on commit fe5f42e

Please sign in to comment.