-
Notifications
You must be signed in to change notification settings - Fork 2.4k
Expand file tree
/
Copy path.pre-commit-config.yaml
More file actions
284 lines (256 loc) · 10.6 KB
/
.pre-commit-config.yaml
File metadata and controls
284 lines (256 loc) · 10.6 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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
# NemoClaw — prek hook configuration
# prek: https://github.com/j178/prek — single binary, no Python required for the runner
# Installed as an npm devDependency (@j178/prek) — available after `npm install`.
# All git hooks (pre-commit, commit-msg, pre-push) are managed by prek via this file only.
# The "prepare" script in package.json runs `prek install` (writes `.git/hooks/*`).
# If you previously used Husky, run: git config --unset core.hooksPath
# then `npm install` again so Git uses the hooks prek installs.
#
# Usage:
# npx prek install
# npx prek run --all-files
#
# CI / diff-only runs:
# npx prek run --from-ref <base> --to-ref HEAD
#
# Priority groups (prek runs same-priority hooks in parallel):
# 0 — General file fixers (whitespace, EOF, line endings)
# 4 — SPDX header insertion (--fix)
# 5 — Shell / TS formatters (shfmt, prettier)
# 6 — Fixes that should follow formatters (ruff check --fix, eslint --fix)
# 10 — Linters and read-only checks
# 20 — Project-level checks (vitest, coverage, ratchet)
exclude: ^(nemoclaw/dist/|nemoclaw/node_modules/|docs/_build/|\.venv/|uv\.lock$)
# Which git hook shims `prek install` writes (separate from each hook's `stages:`).
# https://prek.j178.dev/configuration/#default_install_hook_types
default_install_hook_types:
- pre-commit
- commit-msg
- pre-push
repos:
# ── Priority 0: general file fixers ───────────────────────────────────────
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v6.0.0
hooks:
- id: trailing-whitespace
priority: 0
- id: end-of-file-fixer
priority: 0
- id: mixed-line-ending
args: ["--fix=lf"]
priority: 0
# ── Priority 0: reject force-added ignored files ───────────────────────────
# Catches `git add -f` of files that .gitignore would normally block.
# Single source of truth stays in .gitignore — no duplicate list here.
- repo: local
hooks:
- id: no-force-added-ignored
name: Reject force-added ignored files
entry: bash -c 'IGNORED=$(git ls-files --ignored --exclude-standard --cached -- "$@") && if [ -n "$IGNORED" ]; then echo "Force-added files that .gitignore would block:" && echo "$IGNORED" && exit 1; fi' --
language: system
always_run: true
pass_filenames: false
priority: 0
# ── Priority 4: SPDX headers (insert if missing; runs before language formatters) ──
- repo: local
hooks:
- id: spdx-headers
name: SPDX license headers (insert if missing)
entry: bash scripts/check-spdx-headers.sh --fix
language: system
files: ^(nemoclaw/src/.*\.ts|scripts/.*\.ts|nemoclaw-blueprint/.*\.py|.*\.sh)$
exclude: ^nemoclaw-blueprint/.*__init__\.py$
pass_filenames: true
priority: 4
# ── Priority 4: regenerate agent skills when docs change ──────────────────
- repo: local
hooks:
- id: platform-matrix-sync
name: Sync platform matrix to docs
entry: bash -c 'python3 scripts/generate-platform-docs.py && git add README.md docs/get-started/quickstart.md docs/inference/inference-options.md'
language: system
files: ^(ci/platform-matrix\.json|README\.md|docs/get-started/quickstart\.md|docs/inference/inference-options\.md|scripts/generate-platform-docs\.py)$
pass_filenames: false
priority: 3
- id: docs-to-skills
name: Regenerate agent skills from docs
entry: bash -c 'python3 scripts/docs-to-skills.py docs/ .agents/skills/ --prefix nemoclaw-user && git add .agents/skills/'
language: system
files: ^(docs/.*\.md$|ci/platform-matrix\.json$|scripts/generate-platform-docs\.py$)
pass_filenames: false
priority: 4
# ── Priority 5: formatters ────────────────────────────────────────────────
- repo: https://github.com/scop/pre-commit-shfmt
rev: v3.12.0-2
hooks:
- id: shfmt
args:
- -w
- -i
- "2"
- -ci
- -bn
priority: 5
- repo: local
hooks:
- id: prettier-plugin
name: Prettier (plugin)
entry: bash -c 'root="$(git rev-parse --show-toplevel)" && cd "$root/nemoclaw" && files=() && for f in "$@"; do files+=("${f#nemoclaw/}"); done && npx prettier --write "${files[@]}"' --
language: system
files: ^nemoclaw/.*\.ts$
pass_filenames: true
priority: 5
- id: prettier-js
name: Prettier (JavaScript)
entry: npx prettier --write
language: system
files: ^(bin|test)/.*\.js$
pass_filenames: true
priority: 5
# ── Priority 6: auto-fix after formatting ─────────────────────────────────
- repo: local
hooks:
- id: eslint-plugin
name: ESLint (plugin)
entry: bash -c 'root="$(git rev-parse --show-toplevel)" && cd "$root/nemoclaw" && files=() && for f in "$@"; do files+=("${f#nemoclaw/}"); done && npx eslint --fix "${files[@]}"' --
language: system
files: ^nemoclaw/.*\.ts$
pass_filenames: true
priority: 6
- repo: local
hooks:
- id: eslint-cli
name: ESLint (CLI)
entry: npx eslint --fix
language: system
files: ^(bin|test|scripts|docs/_ext)/.*\.js$
pass_filenames: true
priority: 6
# ── Priority 10: linters and validation ─────────────────────────────────────
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v6.0.0
hooks:
- id: check-merge-conflict
priority: 10
- id: check-added-large-files
args: ["--maxkb=2000"]
priority: 10
- id: check-case-conflict
priority: 10
- id: check-yaml
priority: 10
- id: check-toml
priority: 10
- id: check-json
priority: 10
- id: detect-private-key
priority: 10
- id: check-executables-have-shebangs
priority: 10
- id: check-shebang-scripts-are-executable
priority: 10
- repo: local
hooks:
- id: validate-config-schemas
name: Validate config files against JSON schemas
entry: npx tsx scripts/validate-configs.ts
language: system
pass_filenames: false
files: ^(nemoclaw-blueprint/.*\.yaml$|nemoclaw/openclaw\.plugin\.json$|schemas/.*\.json$)
priority: 10
- repo: https://github.com/shellcheck-py/shellcheck-py
rev: v0.11.0.1
hooks:
- id: shellcheck
priority: 10
- repo: local
hooks:
- id: hadolint
name: hadolint
entry: hadolint
language: system
files: (Dockerfile[^/]*|.*\.dockerfile)$
types: [file]
priority: 10
- repo: https://github.com/gitleaks/gitleaks
rev: v8.30.1
hooks:
- id: gitleaks
name: gitleaks (secret scan)
priority: 10
- repo: https://github.com/DavidAnson/markdownlint-cli2
rev: v0.22.0
hooks:
- id: markdownlint-cli2
priority: 10
# ── commit-msg hooks ────────────────────────────────────────────────────────
- repo: https://github.com/alessandrojcm/commitlint-pre-commit-hook
rev: v9.24.0
hooks:
- id: commitlint
stages: [commit-msg]
additional_dependencies: ["@commitlint/config-conventional@20"]
priority: 10
# ── pre-push hooks ─────────────────────────────────────────────────────────
- repo: local
hooks:
- id: tsc-plugin
name: TypeScript (plugin)
entry: bash -c 'cd nemoclaw && npx tsc --noEmit --incremental'
language: system
pass_filenames: false
files: ^nemoclaw/
stages: [pre-push]
priority: 10
- id: tsc-js
name: TypeScript (JS config)
entry: bash -c 'npm run build:cli && npx tsc -p jsconfig.json'
language: system
pass_filenames: false
files: ^(bin|test|scripts)/.*\.js$
stages: [pre-push]
priority: 10
- id: tsc-cli
name: TypeScript (CLI)
entry: npx tsc -p tsconfig.cli.json
language: system
pass_filenames: false
files: ^(bin|scripts)/
types_or: [ts, tsx]
stages: [pre-push]
priority: 10
- id: version-tag-sync
name: package.json ↔ git tag version sync
entry: bash scripts/check-version-tag-sync.sh
language: system
always_run: true
pass_filenames: false
stages: [pre-push]
priority: 10
# ── Priority 20: project-level checks (coverage + ratchet) ─────────────────
- repo: local
hooks:
- id: test-cli
name: Test (CLI)
entry: bash -c 'npm run build:cli && npx vitest run --project cli --coverage --coverage.reporter=text --coverage.reporter=json-summary --coverage.reportsDirectory=coverage/cli --coverage.include="bin/**/*.js" --coverage.include="dist/lib/**/*.js" --coverage.exclude="test/**/*.js" --coverage.exclude="test/**/*.ts" && npx tsx scripts/check-coverage-ratchet.ts coverage/cli/coverage-summary.json ci/coverage-threshold-cli.json "CLI coverage"'
language: system
pass_filenames: false
files: ^(bin/|src/|test/)
priority: 20
- id: test-plugin
name: Test (plugin)
entry: bash -c 'npx vitest run --project plugin --coverage --coverage.reporter=text --coverage.reporter=json-summary --coverage.reportsDirectory=coverage/plugin --coverage.include="nemoclaw/src/**/*.ts" --coverage.exclude="**/*.test.ts" && npx tsx scripts/check-coverage-ratchet.ts coverage/plugin/coverage-summary.json ci/coverage-threshold-plugin.json "Plugin coverage"'
language: system
pass_filenames: false
files: ^nemoclaw/
priority: 20
- id: test-skills-yaml
name: Test (skills YAML)
entry: npx vitest run test/skills-frontmatter.test.ts
language: system
pass_filenames: false
files: ^(\.agents/skills/|docs/.*\.md$|scripts/docs-to-skills\.py$|test/skills-frontmatter\.test\.js$)
priority: 20
default_language_version:
python: python3
fail_fast: false