Enable --color for eslint-loader

1k Views Asked by At

How can i enable color for eslint-loader's console output? When i run eslint --color --quiet --cache --format=node_modules/eslint-formatter-pretty . for example, the output will be colored with nice white/yellow/red/green colors.

I am trying to find a way to enable the same for webpack eslint-loader. Here is my eslint rule:

{
  test: /\.jsx?$/,
  enforce: "pre",
  exclude: /node_modules/,
  loader: "eslint-loader",
  options: {
    formatter: require("eslint-formatter-pretty"),
    failOnWarning: false,
    failOnError: true
  }
},
1

There are 1 best solutions below

0
On

This is a little bit late but what you can do is simply adding the option in the command line like so :

webpack --color

Cheers