-
Notifications
You must be signed in to change notification settings - Fork 45
Expand file tree
/
Copy pathnano-staged.json
More file actions
22 lines (22 loc) · 851 Bytes
/
nano-staged.json
File metadata and controls
22 lines (22 loc) · 851 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"**/*.{html,md,json,css,js,ts}": "oxfmt",
"**/*.{js,ts}": "oxlint",
"**/*.css": "stylelint --fix",
"web/**/*.svelte": [
"node ./web/scripts/check-names.ts",
"prettier --experimental-cli --write",
"stylelint --fix",
"eslint --fix --concurrency auto",
"sh ./web/scripts/check-types.sh"
],
"**/*.svg": "svgo",
".devcontainer/Dockerfile": "node ./scripts/check-versions.ts",
".node-version": "node ./scripts/check-versions.ts",
"package.json": "node ./scripts/check-versions.ts",
"*/package.json": "node ./scripts/check-versions.ts",
"*/Dockerfile": "node ./scripts/check-versions.ts",
".github/workflows/*.yml": "node ./scripts/check-versions.ts",
"**/*.test.ts": "node ./scripts/check-tests.ts",
"core/messages/*/en.ts": "node ./scripts/check-messages.ts",
"web/index.html": "pnpm -F web build:web"
}