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 8bc1eb7 commit 3a9d480Copy full SHA for 3a9d480
.eslintignore
.eslintrc
@@ -39,5 +39,10 @@
39
},
40
"env": {
41
"node": true
42
- }
+ },
43
+ "ignorePatterns": [
44
+ "node_modules/*",
45
+ "index.d.ts",
46
+ "coverage",
47
+ ]
48
}
package.json
@@ -14,7 +14,7 @@
14
"pretest": "rimraf coverage test/tmp",
15
"test": "istanbul cover test/run.js",
16
"posttest": "istanbul report lcov text",
17
- "lint": "eslint lib/*.js test/*.js test/integration/*.js",
+ "lint": "eslint --ext=js,mjs .",
18
"report": "istanbul report lcov text",
19
"ci-lint": "is-node-modern 8 && npm run lint || is-node-not-modern 8",
20
"ci-test": "npm run test && npm run browser && npm run report",
0 commit comments