mirror of
https://github.com/Stremio/stremio-web.git
synced 2026-04-21 11:42: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-trailing-spaces": "error",
|
||||||
"no-useless-concat": "error",
|
"no-useless-concat": "error",
|
||||||
"no-unreachable": "error",
|
"no-unreachable": "error",
|
||||||
"no-unused-vars": "error",
|
"no-unused-vars": [
|
||||||
|
"error",
|
||||||
|
{
|
||||||
|
"varsIgnorePattern": "_"
|
||||||
|
}
|
||||||
|
],
|
||||||
"prefer-const": "error",
|
"prefer-const": "error",
|
||||||
"quotes": [
|
"quotes": [
|
||||||
"error",
|
"error",
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue