You've already forked tribes-supertest
924e6bc337
Add the scope/action CLI for scenarios, topologies, blocks, and groups with generated registry listings. Replace legacy scenario and alias npm scripts with the packaged supertest bin. Include removal of the obsolete rollout progress document.
24 lines
651 B
YAML
24 lines
651 B
YAML
# Shared by Nix/devenv and Guix shells. Keep hook entries PATH-based.
|
|
default_stages:
|
|
- pre-commit
|
|
|
|
repos:
|
|
- repo: local
|
|
hooks:
|
|
- id: check-added-large-files
|
|
name: check added large files
|
|
entry: scripts/hooks/check-added-large-files
|
|
args: ["--maxkb=16384"]
|
|
language: system
|
|
types: [file]
|
|
stages: [pre-commit, pre-push, manual]
|
|
|
|
- id: npm-format-check
|
|
name: npm format check
|
|
entry: npx prettier --check .
|
|
language: system
|
|
pass_filenames: false
|
|
files: '\.(cjs|js|json|md|mjs|ts|tsx|yaml|yml)$'
|
|
types: [text]
|
|
stages: [pre-commit]
|