dev (client): update eslint rule
This commit is contained in:
parent
25a1fa341a
commit
a097e1aa98
1 changed files with 10 additions and 1 deletions
|
@ -5,6 +5,15 @@
|
|||
"rules": {
|
||||
"file-progress/activate": 1,
|
||||
"prettier/prettier": 0,
|
||||
"one-var": ["error", "never"]
|
||||
"one-var": ["error", "never"],
|
||||
"@typescript-eslint/no-unused-vars": [
|
||||
"error",
|
||||
{
|
||||
"argsIgnorePattern": "^_",
|
||||
"varsIgnorePattern": "^_",
|
||||
"caughtErrorsIgnorePattern": "^_",
|
||||
"destructuredArrayIgnorePattern": "^_"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue