Something went wrong on our end
pyproject.toml 533 B
[tool.ruff]
exclude = [".git", "__pycache__"]
ignore = ["E501"]
select = [
# pycodestyle
"E",
"W",
# Pyflakes
"F",
# Flake8 Debugger
"T1",
# Isort
"I",
# Pathlib usage
"PTH",
# Implicit Optional
"RUF013"
]
[tool.ruff.isort]
known-first-party = ["arkindex_export", "line_image_extractor"]
known-third-party = [
"albumentations",
"cv2",
"editdistance",
"imageio",
"numpy",
"scipy",
"tensorboard",
"torch",
"torchvision",
"tqdm",
"yaml"
]