vue的vite项目配置eslint没有效果?
启动vite后不提示vue/no-unused-vars和any类型。
// .eslintrc.js
module.exports = {
extends: [
'eslint:recommended',
"plugin:vue/vue3-recommended",
"prettier",
"prettier/vue",
],
rules: {
'vue/no-unused-vars': 'error',
"@typescript-eslint/no-explicit-any": "off"
},
};
package.json
{
"name": "vue3vitets",
"version": "0.0.0",
"scripts": {
"dev": "vite",
"build": "vite build"
},
"dependencies": {
"axios": "^0.20.0",
"typescript": "^4.0.3",
"vue": "^3.0.0-rc.1",
"vue-router": "^4.0.0-beta.13"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.4.1",
"@typescript-eslint/parser": "^4.4.1",
"@vue/compiler-sfc": "^3.0.0-rc.1",
"eslint": "^7.11.0",
"eslint-config-prettier": "^6.12.0",
"eslint-plugin-vue": "^7.0.1",
"prettier": "^2.1.2",
"vite": "^1.0.0-rc.1"
}
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
同问,vite好像用不了eslint
package.json
vite.config.js
https://www.npmjs.com/package...
ESLint 的解析器使用的是 Espree 只能解析 js,把parser改为 vue-eslint-parser,就OK了。
参考官网 eslint-plugin-vue官网