webstorm關閉ESLint

Mars-xq發表於2018-12-20

webstorm新建vue專案一路next預設會開啟eslint功能。

一:setting中關閉

搜尋eslint並關閉
在這裡插入圖片描述

二、專案中關閉

找到build資料夾—>webpack.base.conf.js---->module

module: {
	rules: [
	  ...(config.dev.useEslint ? [createLintingRule()] : []),
	  {
		test: /\.vue$/,
		loader: 'vue-loader',
		options: vueLoaderConfig
	  },
	  .....

在這裡插入圖片描述

點選config.dev.useEslint,並將值設為false

// Use Eslint Loader?
// If true, your code will be linted during bundling and
// linting errors and warnings will be shown in the console.
useEslint: false,
// If true, eslint errors and warnings will also be shown in the error overlay
// in the browser.
showEslintErrorsInOverlay: false,

在這裡插入圖片描述

相關文章