Skip to content

Commit

Permalink
[lint] Add no-unused-vars rule (#1299)
Browse files Browse the repository at this point in the history
This commit adds no-unused-vars rule to linter.

ONE-vscode-DCO-1.0-Signed-off-by: Dayoung Lee <[email protected]>
  • Loading branch information
dayo09 authored Sep 28, 2022
1 parent 4ec972d commit 5f7fdba
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@
"no-extra-semi": "warn",
"no-case-declarations": "warn",
"no-useless-escape" : "warn",
"no-prototype-builtins": "warn"
"no-prototype-builtins": "warn",
"no-unused-vars": ["warn", { "argsIgnorePattern": "^_" }]
}
}

0 comments on commit 5f7fdba

Please sign in to comment.