Toy parser of command line arguments. Part of the "toys" collection.
0
fork

Configure Feed

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

chore: Add Prettier for formatting

+33 -5
+4
.prettierrc
··· 1 + { 2 + "tabWidth": 2, 3 + "singleQuote": true 4 + }
+6
.vscode/settings.json
··· 1 + { 2 + "editor.defaultFormatter": "esbenp.prettier-vscode", 3 + "editor.codeActionsOnSave": { 4 + "source.fixAll.prettier": "always" 5 + } 6 + }
+19 -2
package-lock.json
··· 9 9 "version": "1.0.0", 10 10 "license": "MIT", 11 11 "devDependencies": { 12 - "typescript": "^6.0.3", 13 - "vitest": "^4.1.5" 12 + "prettier": "3.8.3", 13 + "typescript": "6.0.3", 14 + "vitest": "4.1.5" 14 15 } 15 16 }, 16 17 "node_modules/@emnapi/core": { ··· 985 986 }, 986 987 "engines": { 987 988 "node": "^10 || ^12 || >=14" 989 + } 990 + }, 991 + "node_modules/prettier": { 992 + "version": "3.8.3", 993 + "resolved": "https://registry.npmjs.org/prettier/-/prettier-3.8.3.tgz", 994 + "integrity": "sha512-7igPTM53cGHMW8xWuVTydi2KO233VFiTNyF5hLJqpilHfmn8C8gPf+PS7dUT64YcXFbiMGZxS9pCSxL/Dxm/Jw==", 995 + "dev": true, 996 + "license": "MIT", 997 + "bin": { 998 + "prettier": "bin/prettier.cjs" 999 + }, 1000 + "engines": { 1001 + "node": ">=14" 1002 + }, 1003 + "funding": { 1004 + "url": "https://github.com/prettier/prettier?sponsor=1" 988 1005 } 989 1006 }, 990 1007 "node_modules/rolldown": {
+3 -2
package.json
··· 11 11 "test": "echo \"Error: no test specified\" && exit 1" 12 12 }, 13 13 "devDependencies": { 14 - "typescript": "^6.0.3", 15 - "vitest": "^4.1.5" 14 + "prettier": "3.8.3", 15 + "typescript": "6.0.3", 16 + "vitest": "4.1.5" 16 17 } 17 18 }
+1 -1
tsconfig.json
··· 39 39 "isolatedModules": true, 40 40 "noUncheckedSideEffectImports": true, 41 41 "moduleDetection": "force", 42 - "skipLibCheck": true, 42 + "skipLibCheck": true 43 43 } 44 44 }