mirror of
https://github.com/huggingface/diffusers.git
synced 2026-01-27 17:22:53 +03:00
* before running make style * remove left overs from flake8 * finish * make fix-copies * final fix * more fixes
19 lines
456 B
TOML
19 lines
456 B
TOML
[tool.black]
|
|
line-length = 119
|
|
target-version = ['py37']
|
|
|
|
[tool.ruff]
|
|
# Never enforce `E501` (line length violations).
|
|
ignore = ["E501", "E741", "W605"]
|
|
select = ["E", "F", "I", "W"]
|
|
line-length = 119
|
|
|
|
# Ignore import violations in all `__init__.py` files.
|
|
[tool.ruff.per-file-ignores]
|
|
"__init__.py" = ["E402", "F401", "F403", "F811"]
|
|
"src/diffusers/utils/dummy_*.py" = ["F401"]
|
|
|
|
[tool.ruff.isort]
|
|
lines-after-imports = 2
|
|
known-first-party = ["diffusers"]
|