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 27
27
"verror" : " ^1.8.1"
28
28
},
29
29
"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" ,
30
35
"get-port" : " ^5.1.1" ,
31
36
"husky" : " ^4.2.5" ,
32
- "snazzy" : " ^9.0.0" ,
33
- "standard" : " ^16.0.0" ,
34
37
"tap" : " 14.11.0"
35
38
},
36
39
"scripts" : {
41
44
"test:watch" : " tap -n -w --no-coverage-report" ,
42
45
"test:integration" : " tap --no-cov 'test-integration/**/*.test.js'" ,
43
46
"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 "
46
49
},
47
50
"husky" : {
48
51
"hooks" : {
You can’t perform that action at this time.
0 commit comments