this repo has no description
0
fork

Configure Feed

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

improve scripts

+7 -2
+7 -2
package.json
··· 20 20 "auto-terminal-profile": "cli.js" 21 21 }, 22 22 "scripts": { 23 - "format": "eslint --fix && npm run prettier -- --write", 23 + "eslint": "eslint", 24 + "format:check": "npm run prettier -- --check", 25 + "format:fix": "npm run prettier -- --write", 26 + "lint:check": "npm run eslint", 27 + "lint:fix": "npm run eslint -- --fix", 24 28 "prettier": "prettier .", 25 - "test": "eslint && npm run prettier -- --check" 29 + "quality:check": "npm run format:check && npm run lint:check", 30 + "quality:fix": "npm run format:fix && npm run lint:fix" 26 31 }, 27 32 "dependencies": { 28 33 "@commander-js/extra-typings": "^14.0.0",