Spaces:
Runtime error
Runtime error
File size: 362 Bytes
02afadf 235adef 02afadf |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
[tool.black]
line-length = 119
target_version = ['py38', 'py39', 'py310']
preview = true
[tool.mypy]
ignore_missing_imports = true
no_implicit_optional = true
scripts_are_modules = true
[tool.ruff]
# Ignored rules:
# "E501" -> line length violation
ignore = ["E501"]
select = ["E", "F", "I", "W"]
line-length = 119
[tool.ruff.isort]
lines-after-imports = 2
|