-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathscope-presets.json
More file actions
26 lines (26 loc) · 1.02 KB
/
Copy pathscope-presets.json
File metadata and controls
26 lines (26 loc) · 1.02 KB
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
{
"$schema": "scope-presets",
"presets": {
"full": {
"description": "Everything not matched by the source's hardcoded exclude list. Aaron's default for his own dev loop.",
"skills": "*",
"snippets": "*",
"excludeSkills": ["airon-*", "thanx-*", "baker_st-*", "frontend-design", "playground", "plannotator-*", "anutron-install", "anutron-uninstall"]
},
"spec-discipline": {
"description": "Spec-first + TDD + quality gates. Recommended for contributor-facing repos.",
"skillTags": ["spec", "quality"],
"snippetTags": ["spec", "quality", "formatting"],
"snippetAudience": ["shared"]
},
"dev-tools": {
"extends": "spec-discipline",
"description": "spec-discipline + parallel workflow + PR shipping.",
"skillTags": ["spec", "quality", "workflow", "pr"]
},
"custom": {
"description": "Read includeSkills/excludeSkills/includeSnippets/excludeSnippets from .anutron-install.config.json in the target repo.",
"from": "manifest"
}
}
}