falcion_Whisperer.md/scripts/python/pyproject.toml

20 lines
602 B
TOML

[tool.black]
exclude = '^(venv|.venv|venvs|env|build|dist)/'
line-length = 79
# Adjust to flake8
[tool.isort]
line_length = 79
profile = "black"
# Ensures compatibility with Black formatting
skip_glob = ['venv/*', '.venv/*', '**venvs/*', '**/lib/*', 'env/*', 'build/*', 'dist/*']
[mypy]
allow_untyped_calls = true
disallow_untyped_calls = true
exclude = '^(venv|.venv|venvs|env|build|dist)/'
ignore_missing_imports = true
[tool.ruff]
exclude = ['venv', '.venv', 'venvs', 'env', 'build', 'dist']
[tool.pyink]
exclude = '^(venv|.venv|venvs|env|build|dist)/'
[tool.pylint.MASTER]
ignore-paths = './venv/'