Spaces:
Runtime error
Runtime error
File size: 506 Bytes
fadb92b | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 | [tool.ruff]
line-length = 119
target-version = "py38"
exclude = [
".git",
".venv",
"venv",
"__pycache__",
"build",
"dist",
"*.egg-info",
"data",
"output",
"detectron2",
"vis_utils",
"rl",
]
[tool.ruff.lint]
select = ["E", "F", "I", "W"]
ignore = ["E203", "E501", "E741", "E731", "E712", "E721", "E402", "W605"]
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
[tool.ruff.lint.isort]
known-first-party = ["FIRSTPARTY"]
|