Skip to content

Commit

Permalink
[eslint] clean up ignores
Browse files Browse the repository at this point in the history
  • Loading branch information
ljharb committed Sep 20, 2024
1 parent 335ad19 commit e8f0d80
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
2 changes: 0 additions & 2 deletions .eslintignore

This file was deleted.

7 changes: 6 additions & 1 deletion .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -39,5 +39,10 @@
},
"env": {
"node": true
}
},
"ignorePatterns": [
"node_modules/*",
"index.d.ts",
"coverage",
]
}
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"pretest": "rimraf coverage test/tmp",
"test": "istanbul cover test/run.js",
"posttest": "istanbul report lcov text",
"lint": "eslint lib/*.js test/*.js test/integration/*.js",
"lint": "eslint --ext=js,mjs .",
"report": "istanbul report lcov text",
"ci-lint": "is-node-modern 8 && npm run lint || is-node-not-modern 8",
"ci-test": "npm run test && npm run browser && npm run report",
Expand Down

0 comments on commit e8f0d80

Please sign in to comment.