this repo has no description
0
fork

Configure Feed

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

improve scripts

+9 -3
+1
.gitignore
··· 1 + .eslintcache 1 2 node_modules
+8 -3
package.json
··· 14 14 "index.js" 15 15 ], 16 16 "scripts": { 17 - "format": "eslint --fix && npm run prettier -- --write && sort-package-json", 18 - "prettier": "prettier .", 19 - "test": "eslint && npm run prettier -- --check && sort-package-json --check" 17 + "eslint": "eslint --cache", 18 + "format:check": "npm run prettier -- --check && sort-package-json --check", 19 + "format:fix": "npm run prettier -- --write && sort-package-json", 20 + "lint:check": "npm run eslint", 21 + "lint:fix": "npm run eslint -- --fix", 22 + "prettier": "prettier --cache .", 23 + "quality:check": "npm run format:check && npm run lint:check", 24 + "quality:fix": "npm run format:fix && npm run lint:fix", 20 25 }, 21 26 "dependencies": { 22 27 "alpha-sort": "^5.0.0",