We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eeb75ed commit 35949cfCopy full SHA for 35949cf
package.json
@@ -25,6 +25,9 @@
25
"devDependencies": {
26
"@types/jest": "^24.0.18",
27
"@types/node": "^12.7.5",
28
+ "@typescript-eslint/eslint-plugin": "^2.2.0",
29
+ "@typescript-eslint/parser": "^2.2.0",
30
+ "eslint": "^6.4.0",
31
"jest": "^24.9.0",
32
"jest-circus": "^24.9.0",
33
"nock": "^11.3.4",
@@ -36,7 +39,8 @@
36
39
},
37
40
"scripts": {
38
41
"build": "tsc",
- "test": "jest",
42
+ "test": "yarn lint && yarn cover",
43
+ "lint": "eslint src/**/**/*.ts && eslint __tests__/**/**/*.ts",
44
"cover": "jest --coverage"
45
}
46
0 commit comments