CoolFace
Apppublic

chendl/compositional_test

sourceHugging Faceupdated 3y agoView on Hugging Face
1likes
pyproject.toml24 linesDownload Raw Back to transformers
1[tool.black]2line-length = 1193target-version = ['py37']4 5[tool.ruff]6# Never enforce `E501` (line length violations).7ignore = ["C901", "E501", "E741", "W605"]8select = ["C", "E", "F", "I", "W"]9line-length = 11910 11# Ignore import violations in all `__init__.py` files.12[tool.ruff.per-file-ignores]13"__init__.py" = ["E402", "F401", "F403", "F811"]14"src/transformers/file_utils.py" = ["F401"]15"src/transformers/utils/dummy_*.py" = ["F401"]16 17[tool.ruff.isort]18lines-after-imports = 219known-first-party = ["transformers"]20 21# This is ignored, maybe because of the header? If someone finds a fix, we can uncomment and remove setup.cfg22# [tool.pytest]23# doctest_optionflags="NUMBER NORMALIZE_WHITESPACE ELLIPSIS"24