This repository was archived by the owner on May 14, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +25
-4
lines changed
Expand file tree Collapse file tree 3 files changed +25
-4
lines changed Original file line number Diff line number Diff line change 1+ node_modules /
2+ coverage /
3+ .nyc_output /
4+ docs /
Original file line number Diff line number Diff line change 1+ module . exports = {
2+ env : {
3+ commonjs : true ,
4+ es2021 : true ,
5+ node : true
6+ } ,
7+ extends : [
8+ 'standard'
9+ ] ,
10+ rules : {
11+ 'no-shadow' : 'warn' ,
12+ 'no-unused-vars' : 'warn'
13+ }
14+ }
Original file line number Diff line number Diff line change 2727 "verror" : " ^1.8.1"
2828 },
2929 "devDependencies" : {
30+ "eslint" : " ^7.14.0" ,
31+ "eslint-config-standard" : " ^16.0.2" ,
32+ "eslint-plugin-import" : " ^2.22.1" ,
33+ "eslint-plugin-node" : " ^11.1.0" ,
34+ "eslint-plugin-promise" : " ^4.2.1" ,
3035 "get-port" : " ^5.1.1" ,
3136 "husky" : " ^4.2.5" ,
32- "snazzy" : " ^9.0.0" ,
33- "standard" : " ^16.0.0" ,
3437 "tap" : " 14.11.0"
3538 },
3639 "scripts" : {
4144 "test:watch" : " tap -n -w --no-coverage-report" ,
4245 "test:integration" : " tap --no-cov 'test-integration/**/*.test.js'" ,
4346 "test:integration:local" : " docker-compose up -d && npm run test:integration && docker-compose down" ,
44- "lint" : " standard | snazzy " ,
45- "lint:ci" : " standard "
47+ "lint" : " eslint . " ,
48+ "lint:ci" : " npm run lint "
4649 },
4750 "husky" : {
4851 "hooks" : {
You can’t perform that action at this time.
0 commit comments