Skip to content

Commit

Permalink
chore: change no-unused-vars to 'error'.
Browse files Browse the repository at this point in the history
  • Loading branch information
chizuki committed Dec 2, 2022
1 parent b2fac5a commit cb9704f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/basic/index.js
Original file line number Diff line number Diff line change
@@ -312,7 +312,7 @@ module.exports = {
"no-unused-vars": "off", // or "@typescript-eslint/no-unused-vars": "off",
"unused-imports/no-unused-imports": "error",
"unused-imports/no-unused-vars": [
"warn",
"error",
{ vars: "all", varsIgnorePattern: "^_", args: "after-used", argsIgnorePattern: "^_" }
],
"no-use-before-define": ["error", { functions: false, classes: false, variables: true }],

0 comments on commit cb9704f

Please sign in to comment.