69 lines
2.2 KiB
YAML
69 lines
2.2 KiB
YAML
repos:
|
|
- repo: local
|
|
hooks:
|
|
- id: black
|
|
name: black
|
|
# entry: bash -c 'cd spiffworkflow-backend && black'
|
|
entry: black
|
|
language: system
|
|
files: ^spiffworkflow-backend/
|
|
types: [python]
|
|
require_serial: true
|
|
# exclude: ^migrations/
|
|
exclude: "/migrations/"
|
|
|
|
# --preview because otherwise it will not fix long lines if the long lines contain long strings
|
|
# https://github.com/psf/black/pull/1132
|
|
# https://github.com/psf/black/pull/1609
|
|
# --line-length because then we can avoid the fancy line wrapping in more instances and jason, kb, and elizabeth
|
|
# kind of prefer long lines rather than cutely-formatted sets of lines.
|
|
# TODO: enable when its safe to update the files
|
|
args: [--preview, --line-length, "119"]
|
|
|
|
- id: check-added-large-files
|
|
files: ^spiffworkflow-backend/
|
|
name: Check for added large files
|
|
entry: check-added-large-files
|
|
language: system
|
|
- id: check-toml
|
|
files: ^spiffworkflow-backend/
|
|
name: Check Toml
|
|
entry: check-toml
|
|
language: system
|
|
types: [toml]
|
|
- id: check-yaml
|
|
files: ^spiffworkflow-backend/
|
|
name: Check Yaml
|
|
entry: check-yaml
|
|
language: system
|
|
types: [yaml]
|
|
- id: end-of-file-fixer
|
|
files: ^spiffworkflow-backend/
|
|
name: Fix End of Files
|
|
entry: end-of-file-fixer
|
|
language: system
|
|
types: [text]
|
|
stages: [commit, push, manual]
|
|
- id: ruff
|
|
files: ^spiffworkflow-backend/
|
|
name: ruff
|
|
entry: ruff
|
|
language: system
|
|
types: [python]
|
|
require_serial: true
|
|
exclude: "/migrations/"
|
|
- id: trailing-whitespace
|
|
files: ^spiffworkflow-backend/
|
|
name: Trim Trailing Whitespace
|
|
entry: trailing-whitespace-fixer
|
|
language: system
|
|
types: [text]
|
|
stages: [commit, push, manual]
|
|
exclude: "/migrations/"
|
|
# - repo: https://github.com/pre-commit/mirrors-prettier
|
|
# rev: v2.4.1
|
|
# hooks:
|
|
# - id: prettier
|
|
# files: ^spiffworkflow-backend/
|
|
# exclude_types: [html]
|