warning: Unexpected any. Specify a different type (@typescript-eslint/no-explicit-any) at xxxxxx
直接关闭any类型的警告:
在 .eslintrc.js文件中找到rules 添加 "@typescript-eslint/no-explicit-any": ["off"]
module.exports = {
rules: {
"@typescript-eslint/no-explicit-any": ["off"]
}
}
网友评论