Skip to content

Commit

Permalink
Remove eslint webpack plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
amitsingh-007 committed Dec 23, 2024
1 parent a79f848 commit bd3fee4
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions apps/extension/webpack.config.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { CleanWebpackPlugin } from 'clean-webpack-plugin';
import CopyWebpackPlugin from 'copy-webpack-plugin';
import CssMinimizerPlugin from 'css-minimizer-webpack-plugin';
import ESLintPlugin from 'eslint-webpack-plugin';
// import ESLintPlugin from 'eslint-webpack-plugin';
import ForkTsCheckerWebpackPlugin from 'fork-ts-checker-webpack-plugin';
import HtmlWebpackPlugin from 'html-webpack-plugin';
import MergeJsonWebpackPlugin from 'merge-jsons-webpack-plugin';
Expand Down Expand Up @@ -266,14 +266,14 @@ const config: Configuration = {
root: PATHS.ROOT,
},
}),
new ESLintPlugin({
extensions: ['ts', 'tsx'],
cache: !isProduction,
threads: !isProduction,
lintDirtyModulesOnly: !isProduction,
configType: 'flat',
emitWarning: false,
}),
// new ESLintPlugin({
// extensions: ['ts', 'tsx'],
// cache: !isProduction,
// threads: !isProduction,
// lintDirtyModulesOnly: !isProduction,
// configType: 'flat',
// emitWarning: false,
// }),
],
};

Expand Down

0 comments on commit bd3fee4

Please sign in to comment.