forked from aws/agent-toolkit-for-aws
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmise.toml
More file actions
30 lines (23 loc) · 701 Bytes
/
Copy pathmise.toml
File metadata and controls
30 lines (23 loc) · 701 Bytes
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
[tools]
node = "24"
gitleaks = "latest"
[tools."npm:markdownlint-cli2"]
version = "0.18"
[tasks.lint]
description = "Run all linters"
depends = ["lint:md", "lint:manifests"]
[tasks."lint:md"]
description = "Lint markdown files"
run = "npx markdownlint-cli2 '**/*.md' '#node_modules'"
[tasks."lint:manifests"]
description = "Validate all manifests and skill frontmatter"
run = "python3 tools/validate.py"
[tasks.validate]
description = "Run all validation"
depends = ["lint:manifests"]
[tasks.security]
description = "Run security scans"
run = "gitleaks detect --source . --verbose"
[tasks.build]
description = "Full build: lint + validate + security"
depends = ["lint", "validate", "security"]