Skip to content

Commit

Permalink
Create .eslint.config.js
Browse files Browse the repository at this point in the history
  • Loading branch information
eric-intuitem committed Sep 16, 2024
1 parent ac7b334 commit 4319c7e
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .eslint.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{
"rules": {
"@typescript-eslint/no-unused-vars": [
"error",
{
"args": "all",
"argsIgnorePattern": "^_",
"caughtErrors": "all",
"caughtErrorsIgnorePattern": "^_",
"destructuredArrayIgnorePattern": "^_",
"varsIgnorePattern": "^_",
"ignoreRestSiblings": true
}
]
}
}

0 comments on commit 4319c7e

Please sign in to comment.