mirror of
https://github.com/Stremio/stremio-web.git
synced 2026-03-11 21:27:05 +00:00
suppress lint error if unused var starts with _
This commit is contained in:
parent
1be55b6530
commit
f00eeaf1dd
1 changed files with 6 additions and 1 deletions
|
|
@ -69,7 +69,12 @@
|
|||
"no-trailing-spaces": "error",
|
||||
"no-useless-concat": "error",
|
||||
"no-unreachable": "error",
|
||||
"no-unused-vars": "error",
|
||||
"no-unused-vars": [
|
||||
"error",
|
||||
{
|
||||
"varsIgnorePattern": "_"
|
||||
}
|
||||
],
|
||||
"prefer-const": "error",
|
||||
"quotes": [
|
||||
"error",
|
||||
|
|
|
|||
Loading…
Reference in a new issue