Skip to content

Commit

Permalink
Add ruff linter configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
akaihola committed Aug 6, 2023
1 parent ddcd430 commit ac72e71
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,3 +16,13 @@ src = [
"src",
]
revision = "origin/master..."

[tool.ruff]
select = ["ALL"]
ignore = [
"A002", # builtin-argument-shadowing
"ANN101", # missing-type-self
"D203", # one-blank-line-before-class
"D213", # multi-line-summary-second-line
]
target-version = ["py38"]

0 comments on commit ac72e71

Please sign in to comment.