The Trans Directory
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

configure prettier

+22 -1
+3
.prettierignore
··· 1 + public 2 + node_modules 3 + .quartz-cache
+16
package-lock.json
··· 74 74 "@types/ws": "^8.5.5", 75 75 "@types/yargs": "^17.0.24", 76 76 "esbuild": "^0.18.11", 77 + "prettier": "^3.0.0", 77 78 "tsx": "^3.12.7", 78 79 "typescript": "^5.0.4" 79 80 } ··· 4456 4457 }, 4457 4458 "peerDependencies": { 4458 4459 "preact": ">=10" 4460 + } 4461 + }, 4462 + "node_modules/prettier": { 4463 + "version": "3.0.0", 4464 + "resolved": "https://registry.npmjs.org/prettier/-/prettier-3.0.0.tgz", 4465 + "integrity": "sha512-zBf5eHpwHOGPC47h0zrPyNn+eAEIdEzfywMoYn2XPi0P44Zp0tSq64rq0xAREh4auw2cJZHo9QUob+NqCQky4g==", 4466 + "dev": true, 4467 + "bin": { 4468 + "prettier": "bin/prettier.cjs" 4469 + }, 4470 + "engines": { 4471 + "node": ">=14" 4472 + }, 4473 + "funding": { 4474 + "url": "https://github.com/prettier/prettier?sponsor=1" 4459 4475 } 4460 4476 }, 4461 4477 "node_modules/pretty-bytes": {
+3 -1
package.json
··· 12 12 "url": "https://github.com/jackyzha0/quartz.git" 13 13 }, 14 14 "scripts": { 15 - "typecheck": "tsc --noEmit", 15 + "check": "tsc --noEmit && npx prettier . --check", 16 + "format": "npx prettier . --write", 16 17 "test": "tsx ./quartz/path.test.ts" 17 18 }, 18 19 "keywords": [ ··· 89 90 "@types/ws": "^8.5.5", 90 91 "@types/yargs": "^17.0.24", 91 92 "esbuild": "^0.18.11", 93 + "prettier": "^3.0.0", 92 94 "tsx": "^3.12.7", 93 95 "typescript": "^5.0.4" 94 96 }