Skip to content

Commit

Permalink
Merge pull request #1065 from aligent/chore/loosen-no-unused-vars-lin…
Browse files Browse the repository at this point in the history
…t-rule

Chore: Allow unused vars in rest object spreading or prefixed with uderscore
  • Loading branch information
tvhees authored Aug 26, 2024
2 parents 247d0b6 + 68650c9 commit 99dff93
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,13 @@
"bundledDependencies": false,
"packageDir": "./"
}
],
"@typescript-eslint/no-unused-vars": [
"error",
{
"argsIgnorePattern": "^_",
"ignoreRestSiblings": true
}
]
}
},
Expand Down

0 comments on commit 99dff93

Please sign in to comment.