I use Webpack and Eslint in my project without using React just vanilla JS and I keep getting this problem:
ERROR in [eslint] Failed to load config "react-app" to extend from.
Referenced from: C:UsersDownloadspackage.json
my WEBPACK:
const path = require('path');
const HTMLWebpackPlugin = require('html-webpack-plugin');
const { CleanWebpackPlugin } = require('clean-webpack-plugin');
const ESLintPlugin = require('eslint-webpack-plugin');
module.exports = {
mode: 'development',
context: path.resolve(__dirname, 'src'),
entry: ['@babel/polyfill', './js/index.js'],
output: {
path: path.resolve(__dirname, 'dist'),
filename: 'bundle.js',
},
devServer: {
port: 3000,
},
plugins: [
new HTMLWebpackPlugin({
template: './index.html',
}),
new CleanWebpackPlugin(),
new ESLintPlugin({
fix: true,
}),
],
module: {
rules: [
{
test: /.css$/,
use: ['style-loader', 'css-loader'],
},
{
test: /.js$/,
exclude: /node_modules/,
use: {
loader: 'babel-loader',
options: {
presets: ['@babel/preset-env'],
},
},
},
],
},
};
my ESLINT CONFIG:
{
"env": {
"browser": true,
"es2021": true
},
"extends": ["airbnb-base", "prettier"],
"plugins": ["prettier"],
"parserOptions": {
"ecmaVersion": "latest",
"sourceType": "module"
},
"parser": "@babel/eslint-parser",
"rules": {
"prettier/prettier": ["error"]
}
}
Also I use Prettier:
{
"singleQuote": true,
"printWidth": 120,
"trailingComma": "es5",
"tabWidth": 2,
"semi": true
}
The problem was gone when I deleted eslint-webpack-plugin. But I suppose that I need it bc it helps Eslint to work with Webpack
Please help me! And also I’d be happy if you explained to me what eslint plugins I need with Webpack