1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
Catch conflicts before they ever reach a PR.
`.pre-commit-config.yaml`:
```yaml
repos:
- -
The hook runs `aiscope check` whenever you change any markdown file.
If you don't want pre-commit:
```bash
set -euo pipefail
exec aiscope check --specific .
```
Save as `.git/hooks/pre-commit` and `chmod +x` it.
aiscope is sub-second on typical repos — the hook is essentially free.