Skip to content

Commit

Permalink
update eslint rule
Browse files Browse the repository at this point in the history
  • Loading branch information
ultraviolet10 committed Mar 12, 2024
1 parent 5180ec4 commit 3847275
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/webapp/.eslintrc.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ const config = {
},
plugins: ["@typescript-eslint", "simple-import-sort"],
root: true,
ignorePatterns: ["node_modules", "src/hooks/useScrollBox.ts"],
ignorePatterns: ["node_modules", "src/generated.ts"],
rules: {
"@typescript-eslint/no-unsafe-argument": "off",
"@typescript-eslint/restrict-template-expressions": "off",
Expand All @@ -21,7 +21,7 @@ const config = {
"@typescript-eslint/no-restricted-imports": [
"error",
{
patterns: ["!./*", "!../*"],
patterns: ["./*", "../*"],
},
],

Expand Down

0 comments on commit 3847275

Please sign in to comment.