File tree 3 files changed +7
-3
lines changed
3 files changed +7
-3
lines changed Original file line number Diff line number Diff line change 2
2
* .log
3
3
npm-debug.log *
4
4
.eslintcache
5
+ .cspellcache
5
6
6
7
/coverage
7
8
/dist
Original file line number Diff line number Diff line change 1
1
module . 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
+ ] ,
3
6
"*.js" : [ "eslint --cache --fix" ] ,
4
7
} ;
Original file line number Diff line number Diff line change 22
22
"build" : " cross-env NODE_ENV=production babel src -d dist --copy-files" ,
23
23
"commitlint" : " commitlint --from=master" ,
24
24
"security" : " npm audit --production" ,
25
- "lint:prettier" : " prettier --list-different ." ,
25
+ "lint:prettier" : " prettier --cache -- list-different ." ,
26
26
"lint:js" : " eslint --cache ." ,
27
+ "lint:spelling" : " cspell --cache --no-must-find-files --quiet \" **/*.*\" " ,
27
28
"lint" : " npm-run-all -l -p \" lint:**\" " ,
28
29
"test:only" : " cross-env NODE_ENV=test jest" ,
29
30
"fix:js" : " npm run lint:js -- --fix" ,
30
31
"fix:prettier" : " npm run lint:prettier -- --write" ,
31
32
"fix" : " npm-run-all -l fix:js fix:prettier" ,
32
- "lint:spelling" : " cspell \" **/*.*\" " ,
33
33
"test:watch" : " npm run test:only -- --watch" ,
34
34
"test:manual" : " npm run build && webpack-dev-server test/manual/src/index.js --open --config test/manual/webpack.config.js" ,
35
35
"test:coverage" : " npm run test:only -- --collectCoverageFrom=\" src/**/*.js\" --coverage" ,
You can’t perform that action at this time.
0 commit comments