Files
codeql-action/.pre-commit-config.yaml
T

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

21 lines
552 B
YAML
Raw Normal View History

2023-10-26 10:58:39 +02:00
repos:
- repo: local
hooks:
2025-02-20 11:59:26 +01:00
- id: lint-ts
name: Lint typescript code
files: \.ts$
language: system
entry: npm run lint -- --fix
2023-10-26 10:58:39 +02:00
- id: compile-ts
name: Compile typescript
files: \.[tj]s$
language: system
entry: npm run build
pass_filenames: false
- id: pr-checks-sync
name: Synchronize PR check workflows
files: ^.github/workflows/__.*\.yml$|^pr-checks
language: system
2025-02-19 16:51:46 +01:00
entry: pr-checks/sync.sh
2023-10-26 10:58:39 +02:00
pass_filenames: false