dev (client): update eslint rule

This commit is contained in:
naskya 2024-03-31 02:29:27 +09:00
parent 25a1fa341a
commit a097e1aa98
No known key found for this signature in database
GPG key ID: 712D413B3A9FED5C

View file

@ -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": "^_"
}
]
}
}