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 286ceba commit ac3c5f7Copy full SHA for ac3c5f7
.gitignore
@@ -1,4 +1,5 @@
1
.idea
2
+*.iml
3
.nyc_output
4
+coverage
5
node_modules
-lib/
package.json
@@ -12,7 +12,8 @@
12
"scripts": {
13
"prettier": "prettier -l --ignore-path .gitignore .",
14
"eslint": "eslint --ignore-path .gitignore .",
15
- "pretest": "yarn eslint && yarn prettier",
+ "lint": "yarn eslint && yarn prettier",
16
+ "pretest": "yarn lint",
17
"test": "mocha",
18
"autotest": "chokidar src test -c 'npm test'",
19
"cover": "nyc mocha",
0 commit comments