Skip to content

Commit

Permalink
Add explicit lint checks
Browse files Browse the repository at this point in the history
refers to #305
  • Loading branch information
luqasz committed Nov 30, 2024
1 parent d5e0aa9 commit 8d985c9
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -51,3 +51,26 @@ docstring-code-line-length = 80

[tool.pytest.ini_options]
addopts = "-ra"

[tool.ruff.lint]
extend-select = [
"B011",
"BLE001",
"I001",
"I002",
"N801",
"N803",
"N805",
"N806",
"N807",
"N815",
"N816",
"N817",
"N999",
"PLE",
"RUF021",
"RUF030",
"S102",
"T201",
"T203",
]

0 comments on commit 8d985c9

Please sign in to comment.