diff options
Diffstat (limited to 'pyproject.toml')
-rw-r--r-- | pyproject.toml | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/pyproject.toml b/pyproject.toml index 6b013f1..20e1b75 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -41,8 +41,18 @@ sphinx-issues = "^4.1.0" requires = ["poetry-core"] build-backend = "poetry.core.masonry.api" -[tool.ruff] -lint.select = ["E", "F", "I", "W"] +[tool.ruff.lint] +# https://docs.astral.sh/ruff/rules/ +select = [ + "F", # pyflakes + "E", # pycodestyle + "W", # pycodestyle + "I", # isort + "UP", # pyupgrade + "B", # flake8-bugbear + "SIM", # flake8-simplify + "FURB" # refurb +] [tool.pytest.ini_options] pythonpath = ["src"] |