mirror of
https://github.com/falcion/Whisperer.md.git
synced 2026-07-22 11:50:29 +00:00
20 lines
602 B
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/'
|