Skip to content

Commit

Permalink
chore: update eslint config
Browse files Browse the repository at this point in the history
  • Loading branch information
atheck committed Oct 31, 2024
1 parent 5ef05b1 commit ebc0622
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 5 deletions.
3 changes: 0 additions & 3 deletions .eslintrc.json

This file was deleted.

3 changes: 2 additions & 1 deletion .npmignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
.github
.eslintrc.json
.releaserc.json
biome.jsonc
eslint.config.mjs
tsconfig.json
coverage
test
6 changes: 6 additions & 0 deletions eslint.config.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
import nodeWithBiome from "./nodeWithBiome.mjs";
import complexity from "./complexity.mjs";
import groupImports from "./groupImports.mjs";

// biome-ignore lint/style/noDefaultExport: Required for ESLint
export default [...nodeWithBiome, ...complexity, ...groupImports];
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
},
"scripts": {
"update": "npx -y npm-check-updates -i --install always",
"lint": "eslint --ext '.ts,.tsx' .",
"lint": "eslint .",
"semantic-release": "semantic-release"
},
"keywords": [
Expand Down

0 comments on commit ebc0622

Please sign in to comment.