Skip to content

Commit

Permalink
minor additions
Browse files Browse the repository at this point in the history
  • Loading branch information
DylanLukes committed Aug 27, 2024
1 parent 5065687 commit 183259b
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,12 @@ allow-dunder-method-names = [
]

[tool.ruff.lint.per-file-ignores]
"tests/**/*.py" = ["S", "PLC1901", "PLC2701", "PLR2004", "PLR6301", "TID252"]
"tests/**/*.py" = [
"S101", # use of asserts
"PLC1901", "PLC2701", # compare to empty string, import private name
"PLR2004", "PLR6301", # magic value comparison, no-self-use
"TID252" # relative imports
]

[tool.ruff.lint.isort]
known-first-party = ["renkon"]
Expand Down

0 comments on commit 183259b

Please sign in to comment.