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
```bash
aiscope --diag .
```
Renders every conflict as a [miette](https://github.com/zkat/miette)
diagnostic with source spans — same look as `cargo check`.
```text
× camelCase disagrees with snake_case
╭─[.github/copilot-instructions.md:5:1]
4 │
5 │ - Use **camelCase** for variables and functions.
· ─────────────────────────────────────
6 │
╰────
help: the other side: .github/instructions/python.instructions.md:7:
```
- --
```bash
aiscope check --specific --diag .
```
Get diagnostic-style output **and** the non-zero exit code in one command —
ideal for `pre-commit` and CI logs.