Skip to content

Commit

Permalink
fixup! feat: configure ruff in pyproject.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
minijackson committed Dec 4, 2023
1 parent ab6f33c commit bdaa55a
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,23 @@ reportlab = "^3.6.8"
[tool.ruff]
select = ["ALL"]
ignore = [
# Disable type annotations for now, it would lead to too many warnings
"ANN",
# Leave doc comments for later,
# as lots of functions needs to be renamed as private
"D",
# Also leave pathlib for later
"PTH",

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

# For the formatter:

# missing-trailing-comma
"COM812",
# single-line-implicit-string-concatenation
"ISC001",
]

0 comments on commit bdaa55a

Please sign in to comment.