We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 143bd11 commit 4d17bedCopy full SHA for 4d17bed
.gitignore
@@ -44,6 +44,7 @@ lib/
44
45
# cache folder
46
.cache
47
+.eslintcache
48
49
# Mac DS_Store files
50
.DS_Store
package.json
@@ -67,8 +67,9 @@
67
},
68
"scripts": {
69
"dev": "npm run build && node bin/dev",
70
- "lint": "eslint ./",
+ "lint": "eslint --cache ./",
71
"build": "babel src/ -d lib/",
72
+ "pretest": "npm run lint",
73
"test": "cross-env MONGODB_VERSION=${MONGODB_VERSION:=3.2.6} MONGODB_STORAGE_ENGINE=mmapv1 NODE_ENV=test TESTING=1 $COVERAGE_OPTION jasmine",
74
"test:win": "cross-env MONGODB_VERSION=${MONGODB_VERSION:=3.2.6} MONGODB_STORAGE_ENGINE=mmapv1 NODE_ENV=test TESTING=1 jasmine",
75
"coverage": "cross-env COVERAGE_OPTION='./node_modules/.bin/istanbul cover' npm test",
0 commit comments