Skip to content
Snippets Groups Projects
pyproject.toml 533 B
Newer Older
Yoann Schneider's avatar
Yoann Schneider committed
[tool.ruff]
exclude = [".git", "__pycache__"]
ignore = ["E501"]
select = [
    # pycodestyle
    "E",
    "W",
    # Pyflakes
    "F",
    # Flake8 Debugger
    "T1",
    # Isort
    "I",
    # Pathlib usage
    "PTH",
    # Implicit Optional
    "RUF013"
Yoann Schneider's avatar
Yoann Schneider committed

[tool.ruff.isort]
known-first-party = ["arkindex_export", "line_image_extractor"]
Yoann Schneider's avatar
Yoann Schneider committed
known-third-party = [
    "albumentations",
    "cv2",
    "editdistance",
    "imageio",
    "numpy",
    "scipy",
    "tensorboard",
    "torch",
    "torchvision",
    "tqdm",
    "yaml"
]