Skip to content

Commit

Permalink
add ruff bandit linting
Browse files Browse the repository at this point in the history
fixes #50
  • Loading branch information
relud committed Mar 1, 2024
1 parent d19f45b commit 16dbafc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ src = ["src", "tests"]
target-version = "py38"

[tool.ruff.lint]
# Enable pycodestyle (E), pyflakes (F), and bugbear (B) rules
select = ["E", "F", "B"]
# Enable pycodestyle (E), pyflakes (F), bugbear (B), and bandit (S) rules
select = ["E", "F", "B", "S"]

ignore = ["E501"]

Expand Down

0 comments on commit 16dbafc

Please sign in to comment.