增加exlint rules

This commit is contained in:
xuewei 2022-08-31 11:25:00 +08:00
parent d53859b9bc
commit 827476cfca
1 changed files with 3 additions and 1 deletions

View File

@ -18,6 +18,8 @@ module.exports = {
"@typescript-eslint"
],
"rules": {
'prefer-const': 'off'
'prefer-const': 'off',
"@typescript-eslint/no-explicit-any": 'off',
'@typescript-eslint/no-unused-vars': 'off'
}
}