Files
contextswitch/.pre-commit-config.yaml

24 lines
579 B
YAML

repos:
- repo: local
hooks:
- id: format
name: format
language: system
pass_filenames: false
entry: cargo make format-flow
- id: format-toml
name: format-toml
language: system
pass_filenames: false
entry: cargo make format-toml-flow
- id: check
name: check
language: system
pass_filenames: false
entry: cargo make check-tests
- id: clippy
name: clippy
language: system
pass_filenames: false
entry: cargo make clippy-flow