InvokeAI/.pre-commit-config.yaml

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

24 lines
412 B
YAML
Raw Permalink Normal View History

2023-07-21 14:14:31 +00:00
# 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]
2023-08-18 12:51:07 +00:00
- id: isort
name: isort
stages: [commit]
language: system
entry: isort
types: [python]