FLUX.2 launch

This commit is contained in:
timudk
2025-11-25 07:25:25 -08:00
commit e80b84ed9f
24 changed files with 3238 additions and 0 deletions

22
.pre-commit-config.yaml Normal file
View File

@@ -0,0 +1,22 @@
repos:
- repo: https://github.com/astral-sh/ruff-pre-commit
# Ruff version.
rev: v0.6.8
hooks:
# Run the linter.
- id: ruff
types_or: [python, pyi]
args: [--fix]
# Run isort
- id: ruff
types_or: [python, pyi]
name: ruff-isort
args: [--select, "I", --fix]
# Run the formatter.
- id: ruff-format
types_or: [python, pyi]
- repo: https://github.com/google/yamlfmt
rev: v0.10.0
hooks:
- id: yamlfmt
args: [--conf, .yamlfmt.yaml]