关闭 Vue 项目中的 ESLint 检测可以通过以下两种方式实现:
- 在
vue.config.js
文件中进行配置。 在项目的根目录下创建一个名为vue.config.js
的文件(如果已经存在则不需要创建),然后在文件中添加以下配置即可关闭 ESLint 检测:
module.exports = { lintOnSave: false };
- 在
package.json
文件中进行配置。 在package.json
文件中添加以下配置即可关闭 ESLint 检测:
{ "name": "my-project", "version": "1.0.0", "scripts": { "serve": "vue-cli-service serve" }, "eslintConfig": { "rules": {}, "env": { "browser": true } }, "dependencies": {}, "devDependencies": { "@vue/cli-plugin-eslint": "~4.5.0", "@vue/cli-service": "~4.5.0", "eslint": "^6.7.2", "eslint-plugin-vue": "^6.2.2", "vue-template-compiler": "^2.6.11" } }
在 package.json
文件中添加 "eslintConfig": {"rules":{},"env":{"browser":true}}
即可关闭 ESLint 检测。需要注意的是,这种方式关闭的是项目中所有的 ESLint 检测,如果需要针对某个特定的文件或目录关闭 ESLint 检测,建议使用第一种方式进行配置。
评论