forked from hplush/slowreader
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnano-staged.json
More file actions
22 lines (22 loc) · 874 Bytes
/
nano-staged.json
File metadata and controls
22 lines (22 loc) · 874 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}": "oxfmt",
"*.{svelte,ts}": "svelte-check",
"*.{js,ts,cjs}": ["oxfmt", "eslint --fix --concurrency auto"],
"*.css": ["oxfmt", "stylelint --fix"],
"*.svelte": [
"node ./web/scripts/check-names.ts",
"prettier --experimental-cli --write",
"stylelint --fix",
"eslint --fix --concurrency auto"
],
"*.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-focused-tests.ts",
"core/messages/*/en.ts": "node ./scripts/check-messages.ts",
"web/index.html": "pnpm -F web build:web"
}