Spaces:
Runtime error
Runtime error
File size: 415 Bytes
a240da9 c19ef6e a240da9 4aa9752 a240da9 66bc8ec a240da9 64d4f97 01ae0bb a240da9 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
[tool.black]
line-length = 88
target_version = ['py310', 'py311']
preview = true
skip_string_normalization = true
[tool.ruff]
line-length = 88
[tool.isort]
profile = "black"
[tool.pytest.ini_options]
addopts = "--cov=src --cov-report=term-missing"
[tool.mypy]
no_implicit_optional = true
strict = true
[[tool.mypy.overrides]]
module = "huggingface_hub,trafilatura,transformers.*"
ignore_missing_imports = true
|