24 lines
627 B
YAML
24 lines
627 B
YAML
repos:
|
|
- repo: local
|
|
hooks:
|
|
- id: policy-checks
|
|
name: Policy Checks
|
|
entry: python3 tools/policy_checks.py
|
|
language: system
|
|
pass_filenames: false
|
|
- id: djlint
|
|
name: djlint (jinja/html)
|
|
entry: python3 -m djlint app/templates --check
|
|
language: system
|
|
pass_filenames: false
|
|
- id: stylelint
|
|
name: stylelint (css)
|
|
entry: npm run lint:css
|
|
language: system
|
|
pass_filenames: false
|
|
- id: pytest-fast
|
|
name: pytest
|
|
entry: python3 -m pytest -q
|
|
language: system
|
|
pass_filenames: false
|