Skip to content

Commit

Permalink
pyproject: update ruff ignores
Browse files Browse the repository at this point in the history
  • Loading branch information
dtrifiro committed Feb 7, 2024
1 parent 5c36e29 commit 87a2856
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,13 @@ ignore = [
"D100", # Missing docstring in public module
"D103", # Missing docstring in public function
"D104", # Missing docstring in public package

"EM101", # Exception must not use a string literal, assign to variable first

"D203", # one blank line before class
"D213", # multi-line-summary-second-line

"PTH123" # open() should be replaced by Path.open
]
select = ["ALL"]
show-source = true
Expand Down

0 comments on commit 87a2856

Please sign in to comment.