this repo has no description
0
fork

Configure Feed

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

improve scripts

+11 -8
+1
eslint.config.js
··· 18 18 extends: [packageJson.configs.recommended, packageJson.configs.stylistic], 19 19 rules: { 20 20 'package-json/require-sideEffects': 'off', 21 + 'package-json/scripts-name-casing': 'off', 21 22 }, 22 23 }, 23 24 ]);
+10 -8
package.json
··· 16 16 "index.js" 17 17 ], 18 18 "scripts": { 19 - "eslint": "eslint --cache", 20 - "format:check": "npm run prettier -- --check", 21 - "format:fix": "npm run prettier -- --write", 22 - "lint:check": "npm run eslint", 23 - "lint:fix": "npm run eslint -- --fix", 24 - "prettier": "prettier --cache .", 19 + "_eslint": "eslint --cache --cache-strategy=content", 20 + "_knip": "knip --cache", 21 + "_prettier": "prettier --cache .", 22 + "format:check": "npm run _prettier -- --check", 23 + "format:fix": "npm run _prettier -- --write", 24 + "lint:check": "npm run _eslint", 25 + "lint:fix": "npm run _eslint -- --fix", 25 26 "quality:check": "npm run format:check && npm run lint:check && npm run unused:check", 26 - "quality:fix": "npm run format:fix && npm run lint:fix", 27 - "unused:check": "knip" 27 + "quality:fix": "npm run format:fix && npm run lint:fix && npm run unused:fix", 28 + "unused:check": "npm run _knip", 29 + "unused:fix": "npm run _knip -- --fix" 28 30 }, 29 31 "dependencies": { 30 32 "bplist-parser": "^0.3.2",