From ba080286b06cb9e0cadec59a6cf1f96aa11aef5a Mon Sep 17 00:00:00 2001 From: Adam Turner <9087854+aa-turner@users.noreply.github.com> Date: Sat, 18 Feb 2023 01:57:06 +0000 Subject: [PATCH] Explicitly select all linter checks --- pyproject.toml | 49 +------------------------------------------------ 1 file changed, 1 insertion(+), 48 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index f80d629b0..7d3d0624b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -271,54 +271,7 @@ external = [ # Whitelist for RUF100 unkown code warnings "SIM113", ] select = [ - "E", # pycodestyle - "F", # Pyflakes - "W", # pycodestyle - # plugins: - "A", # flake8-builtins - "ANN", # flake8-annotations - "ARG", # flake8-unused-arguments - "B", # flake8-bugbear - "BLE", # flake8-blind-except - "C4", # flake8-comprehensions - "C90", # mccabe - "COM", # flake8-commas - "D", # pydocstyle - "DJ", # flake8-django - "DTZ", # flake8-datetimez - "EM", # flake8-errmsg - "ERA", # eradicate - "EXE", # flake8-executable - "FBT", # flake8-boolean-trap - "G", # flake8-logging-format - "I", # isort - "ICN", # flake8-import-conventions - "INP", # flake8-no-pep420 - "ISC", # flake8-implicit-str-concat - "N", # pep8-naming - "NPY", # NumPy-specific rules - "PD", # pandas-vet - "PGH", # pygrep-hooks - "PIE", # flake8-pie - "PL", # pylint - "PT", # flake8-pytest-style - "PTH", # flake8-use-pathlib - "PYI", # flake8-pyi - "Q", # flake8-quotes - "RET", # flake8-return - "RSE", # flake8-raise - "S", # flake8-bandit - "SLF", # flake8-self - "SIM", # flake8-simplify - "T10", # flake8-debugger - "T20", # flake8-print - "TCH", # flake8-type-checking - "TID", # flake8-tidy-imports - "TRY", # tryceratops - "UP", # pyupgrade - "YTT", # flake8-2020 - "RUF", # Ruff-specific rules - "RUF100", # yesqa + "ALL", # every check supported by Ruff ] [tool.ruff.per-file-ignores]