Skip to content

Commit 76c0cab

Browse files
committed
fix: disable eslint
1 parent 0482c2c commit 76c0cab

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

packages/hedgehog-lab/config-overrides.js

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,10 @@ const {
44
getBabelLoader,
55
addWebpackPlugin,
66
addWebpackModuleRule,
7-
useEslintRc,
7+
disableEsLint,
88
} = require("customize-cra");
99
const ReactRefreshPlugin = require("@pmmmwh/react-refresh-webpack-plugin");
1010
const { ESBuildPlugin } = require("esbuild-loader");
11-
const path = require("path");
1211

1312
module.exports = (config, env) => {
1413
const prod = config.mode === "production";
@@ -29,7 +28,7 @@ module.exports = (config, env) => {
2928
},
3029
],
3130
}),
32-
useEslintRc(path.resolve(__dirname, "./.eslintrc")),
31+
disableEsLint(),
3332
addWebpackModuleRule({
3433
test: /.jsx?$/,
3534
use: [

0 commit comments

Comments
 (0)