Skip to content

Commit

Permalink
Fix lint errors
Browse files Browse the repository at this point in the history
Signed-off-by: Levko Kravets <[email protected]>
  • Loading branch information
kravets-levko committed Apr 14, 2024
1 parent cadb489 commit d111da5
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,14 @@
"@typescript-eslint/no-throw-literal": "off",
"no-restricted-syntax": "off",
"no-case-declarations": "off",
"max-classes-per-file": "off"
"max-classes-per-file": "off",
"import/no-extraneous-dependencies": [
"error",
{
"devDependencies": true,
"optionalDependencies": true
}
]
}
}
]
Expand Down

0 comments on commit d111da5

Please sign in to comment.