"vscode:/vscode.git/clone" did not exist on "62e2e99db6fb4b6394aeca523ade6e6762480706"
pyproject.toml 469 Bytes
Newer Older
Patrick von Platen's avatar
Patrick von Platen committed
1
2
[tool.black]
line-length = 119
3
4
5
6
target-version = ['py37']

[tool.ruff]
# Never enforce `E501` (line length violations).
7
8
ignore = ["C901", "E501", "E741", "W605"]
select = ["C", "E", "F", "I", "W"]
9
10
11
12
13
14
15
16
17
18
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"]