eslint-webpack-plugin

3,267 阅读1分钟

简介

webpack 的 ESLint 插件

和eslint-loader关系

eslint-loader将很快被弃用,请使用eslint-webpack-plugin替代。

npm WARN deprecated eslint-loader@4.0.2: This loader has been deprecated. Please use eslint-webpack-plugin

安装、配置、使用

npm install eslint --save-dev
npm install eslint-webpack-plugin --save-dev

在你的 webpack 配置中:

const ESLintPlugin = require('eslint-webpack-plugin');

module.exports = {
  // ...
  plugins: [new ESLintPlugin(options)],
  // ...
};

参考链接

www.febeacon.com/webpack-plu…