Skip to content

Commit

Permalink
merge
Browse files Browse the repository at this point in the history
  • Loading branch information
JaeAeich committed May 30, 2024
2 parents 4665cb3 + 69e2437 commit f8b66ab
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 3 deletions.
13 changes: 13 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -77,8 +77,14 @@ indent-style = "tab"
quote-style = "single"

[tool.ruff.lint]
ignore = [
"D203", # conflicts with D202 as formatter removes black line before class docstring
"D206", # conflicts with E101, `format.indent-style="tab"`
"D213", # conflicts with D212, would have been ignored regardless
]
select = [
"B", # flake8-bugbear
"D", # pydocstyle
"E", # pycodestyle
"F", # Pyflakes
"I", # isort
Expand All @@ -87,5 +93,12 @@ select = [
"UP", # pyupgrade
]

[tool.ruff.lint.per-file-ignores] # ignore all pydocstyle errors in test and services modules
"tesk/services/**/*.py" = ["D"]
"tests/test_unit/test_services/**/*.py" = ["D"]

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

[tool.typos.default.extend-words]
mke = 'mke'
4 changes: 1 addition & 3 deletions tesk/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1 @@
"""
_summary_:tesk package initialization file.
"""
"""TESK package initialization file."""

0 comments on commit f8b66ab

Please sign in to comment.