We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4675cc8 commit 3883d6dCopy full SHA for 3883d6d
site/scripts/check scripts/checksite/scripts/check renamed to scripts/check
@@ -1,10 +1,10 @@
1
#!/bin/sh -e
2
3
echo "-> Formatting check..."
4
-pnpm prettier --check .
+(cd site && pnpm format:check)
5
6
echo "-> Linting..."
7
-pnpm eslint .
+(cd site && pnpm lint)
8
9
echo "-> Type checking..."
10
-pnpm tsc --noEmit
+(cd site && pnpm typecheck)
site/scripts/lint scripts/lintsite/scripts/lint renamed to scripts/lint
@@ -1,7 +1,7 @@
echo "-> Formatting..."
-pnpm prettier --write .
+(cd site && pnpm format)
echo "-> Linting (with fixes)..."
-pnpm eslint --fix .
+(cd site && pnpm lint:fix)
0 commit comments