InvokeAI/.pre-commit-config.yaml
2023-08-18 15:52:04 +10:00

18 lines
303 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]