The problem is that, while I'm developing, every time there's a problem with ESLint, the build breaks and doesn't compile the code.
I set emitWarning: true, but not working. My React project is develop with webpack, neutrino JS, esLint, airbnb.
Errors looks like while running build
ERROR in ./src/index.jsx Module build failed (from ./node_modules/eslint-loader/dist/cjs.js): Module failed because of a eslint error.
code structure in .neutrinorc.js file
const path = require("path");
const airbnb = require("@neutrinojs/airbnb");
const react = require("@neutrinojs/react");
module.exports = {
options: {
root: __dirname,
},
use: [
(neutrino) => {
neutrino.config.resolve.modules
.add("node_modules")
.add(path.resolve(__dirname, "src"));
neutrino.config.resolve.extensions.add(".jsx");
neutrino.config.resolve.alias.set("react-dom", "@hot-loader/react-dom");
},
airbnb({
eslint: {
emitWarning: true,
baseConfig: {
settings: {
"import/resolver": "webpack",
},
rules: {
radix: "off",
"comma-dangle": "off",
"react/no-danger": "off",
"react/button-has-type": "off",
"react/no-find-dom-node": "off",
"react/jsx-filename-extension": "off",
"no-console": [
"error",
{
allow: ["warn", "error"],
},
],
"no-alert": "off",
"no-plusplus": "off",
"no-else-return": "off",
"no-nested-ternary": "off",
"no-underscore-dangle": "off",
"no-restricted-syntax": "off",
"max-len": 0,
"quote-props": "off",
"default-case": "off",
"class-methods-use-this": "off",
"import/prefer-default-export": "off",
"react/no-array-index-key": "off",
"jsx-a11y/click-events-have-key-events": "off",
"jsx-a11y/label-has-for": [
"error",
{
required: {
some: ["nesting", "id"],
},
},
],
},
},
},
}),
You need to add
failOnWarning
asfalse