Skip to content

Commit

Permalink
DAS-2254: Add in ruff preferences and pydocstyle
Browse files Browse the repository at this point in the history
  • Loading branch information
flamingbear committed Nov 27, 2024
1 parent e2fa551 commit dbce4bd
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,17 @@
[tool.ruff]
lint.select = [
"E", # pycodestyle
"F", # pyflakes
"UP", # pyupgrade
"I", # organize imports
"D", # docstyle
]

[tool.ruff.format]
quote-style = "single"

[tool.ruff.lint.pydocstyle]
convention = "google"

[[tool.mypy.overrides]]
module = "harmony_service_lib.*"
Expand Down

0 comments on commit dbce4bd

Please sign in to comment.