22 lines
451 B
TOML
22 lines
451 B
TOML
[tool.black]
|
|
line-length = 88
|
|
target-version = ['py312']
|
|
include = '\.pyi?$'
|
|
exclude = '''
|
|
/(
|
|
\.git
|
|
| \.venv
|
|
| build
|
|
| dist
|
|
)/
|
|
'''
|
|
|
|
[tool.vulture]
|
|
min_confidence = 90
|
|
ignore_decorators = [
|
|
"@app.put", "@app.get", "@app.post", "@app.delete", "@app.patch",
|
|
"@self.app.put", "@self.app.get", "@self.app.post", "@self.app.delete", "@self.app.patch",
|
|
"@model_validator",
|
|
"@override", "@classmethod"
|
|
]
|
|
exclude = ["tests/", "__pycache__/"] |