17 lines
272 B
TOML
17 lines
272 B
TOML
[tool.mypy]
|
|
python_version = "3.12"
|
|
ignore_missing_imports = true
|
|
exclude = '^(generative_inpainting|images|output)/'
|
|
|
|
[tool.ruff]
|
|
exclude = [
|
|
"AOT-GAN-for-Inpainting",
|
|
"generative_inpainting",
|
|
"images",
|
|
"output",
|
|
"__pycache__",
|
|
".venv",
|
|
"venv",
|
|
".git",
|
|
]
|