vite中怎么配置eslint
来源:3-6 使用 eslint 规范代码
Ethan3185420
2022-05-13
vue/cli 中有默认有单独的eslint配置文件, 请问老师, 用vite创建的项目, 安装完vite-plugin-eslint 插件后, 我先引用了, 然后还需要创建一个单独的配置文件吗?如果需要, 里面的内容怎么写?
写回答
2回答
-
张轩
2022-05-13
同学你好
可以在根目录创建一个 .eslintrc.js 文件,然后内容如下:
module.exports = { env: { node: true, }, extends: [ 'eslint:recommended', 'plugin:vue/vue3-recommended', ], rules: { // override/add rules settings here, such as: // 'vue/no-unused-vars': 'error' } }
012022-05-13 -
Ethan3185420
提问者
2022-05-13
不配置会报错
00
相似问题