Skip to content

Commit

Permalink
updated eslint config
Browse files Browse the repository at this point in the history
  • Loading branch information
DaanV2 committed Sep 12, 2024
1 parent 094c495 commit d95f713
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions eslint.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,16 @@ import tseslint from "typescript-eslint";
export default tseslint.config(
{
files: ["**/*.ts"],
ignores: ["coverage/**/*", "node_modules/**/*"],
ignores: [
"coverage/",
"coverage/*",
"coverage/**/*",
"lib/",
"lib/*",
"lib/**/*",
"node_modules/",
"node_modules/*",
],
extends: [eslint.configs.recommended, ...tseslint.configs.recommended],
plugins: {
jest: {},
Expand All @@ -17,4 +26,4 @@ export default tseslint.config(
"no-case-declarations": "off",
},
}
);
);

0 comments on commit d95f713

Please sign in to comment.