mirror of
https://github.com/invoke-ai/InvokeAI.git
synced 2025-01-05 10:27:02 +08:00
24 lines
412 B
YAML
24 lines
412 B
YAML
# See https://pre-commit.com/ for usage and config
|
|
repos:
|
|
- repo: local
|
|
hooks:
|
|
- id: black
|
|
name: black
|
|
stages: [commit]
|
|
language: system
|
|
entry: black
|
|
types: [python]
|
|
|
|
- id: flake8
|
|
name: flake8
|
|
stages: [commit]
|
|
language: system
|
|
entry: flake8
|
|
types: [python]
|
|
|
|
- id: isort
|
|
name: isort
|
|
stages: [commit]
|
|
language: system
|
|
entry: isort
|
|
types: [python] |