File tree Expand file tree Collapse file tree 3 files changed +7
-3
lines changed Expand file tree Collapse file tree 3 files changed +7
-3
lines changed Original file line number Diff line number Diff line change 22*.log
33npm-debug.log*
44.eslintcache
5+ .cspellcache
56
67/coverage
78/dist
Original file line number Diff line number Diff line change 11module.exports = {
2- "*": ["prettier --write --ignore-unknown", "cspell --no-must-find-files"],
2+ "*": [
3+ "prettier --cache --write --ignore-unknown",
4+ "cspell --cache --no-must-find-files",
5+ ],
36 "*.js": ["eslint --cache --fix"],
47};
Original file line number Diff line number Diff line change 2222 "build": "cross-env NODE_ENV=production babel src -d dist --copy-files",
2323 "commitlint": "commitlint --from=master",
2424 "security": "npm audit --production",
25- "lint:prettier": "prettier --list-different .",
25+ "lint:prettier": "prettier --cache -- list-different .",
2626 "lint:js": "eslint --cache .",
27+ "lint:spelling": "cspell --cache --no-must-find-files --quiet \"**/*.*\"",
2728 "lint": "npm-run-all -l -p \"lint:**\"",
2829 "test:only": "cross-env NODE_ENV=test jest",
2930 "fix:js": "npm run lint:js -- --fix",
3031 "fix:prettier": "npm run lint:prettier -- --write",
3132 "fix": "npm-run-all -l fix:js fix:prettier",
32- "lint:spelling": "cspell \"**/*.*\"",
3333 "test:watch": "npm run test:only -- --watch",
3434 "test:manual": "npm run build && webpack-dev-server test/manual/src/index.js --open --config test/manual/webpack.config.js",
3535 "test:coverage": "npm run test:only -- --collectCoverageFrom=\"src/**/*.js\" --coverage",
You can’t perform that action at this time.
0 commit comments