We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0308067 commit 038e01eCopy full SHA for 038e01e
package.json
@@ -28,6 +28,9 @@
28
"lint:js": "eslint --cache .",
29
"lint:spelling": "cspell \"**/*.*\"",
30
"lint": "npm-run-all -l -p \"lint:**\"",
31
+ "fix:js": "npm run lint:js -- --fix",
32
+ "fix:prettier": "npm run lint:prettier -- --write",
33
+ "fix": "npm-run-all -l fix:js fix:prettier",
34
"test:only": "cross-env NODE_ENV=test jest",
35
"test:watch": "npm run test:only -- --watch",
36
"test:coverage": "npm run test:only -- --collectCoverageFrom=\"src/**/*.js\" --coverage",
0 commit comments