Skip to content

Commit

Permalink
build: move setup.cfg to pyproject.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
lengau committed Nov 15, 2024
1 parent 9e0f04e commit 5154f19
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 21 deletions.
12 changes: 11 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,6 @@ skip = ".tox,.git,build,.*_cache,__pycache__,*.tar,*.snap,*.png,./node_modules,.
quiet-level = 3
check-filenames = true


[tool.mypy]
python_version = "3.10"
exclude = [
Expand Down Expand Up @@ -171,6 +170,17 @@ no_implicit_optional = true
module = ["tests.*"]
strict = false

[tool.pydocstyle]
ignore = [
"D105", # Missing docstring in magic method (reason: magic methods already have definitions)
"D107", # Missing docstring in __init__ (reason: documented in class docstring)
"D203", # 1 blank line required before class docstring (reason: pep257 default)
"D204",
"D213", # Multi-line docstring summary should start at the second line (reason: pep257 default)
"D215", # Section underline is over-indented (reason: pep257 default)
]


[tool.ruff]
line-length = 88
target-version = "py310"
Expand Down
20 changes: 0 additions & 20 deletions setup.cfg

This file was deleted.

0 comments on commit 5154f19

Please sign in to comment.