Skip to content

Commit

Permalink
add rules
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastianwd committed Nov 18, 2024
1 parent 880b918 commit f13bf62
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .changeset/curly-dogs-listen.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"swd-eslint-config": patch
---

add rules
9 changes: 9 additions & 0 deletions src/flat-base.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,5 +35,14 @@ export const base = tseslint.config({
"@typescript-eslint/no-unsafe-call": "off",
"@typescript-eslint/no-unsafe-member-access": "off",
"@typescript-eslint/no-unsafe-assignment": "off",
"@typescript-eslint/no-unsafe-argument": "off",
"@typescript-eslint/no-unsafe-return": "off",
"@typescript-eslint/no-unused-vars": [
"warn",
{
argsIgnorePattern: "^_",
varsIgnorePattern: "^_",
},
],
},
}) satisfies FlatConfig.ConfigArray;

0 comments on commit f13bf62

Please sign in to comment.