Skip to content

Commit

Permalink
[Web] Disable eslint plugin inside dev server to prevent it from bloc…
Browse files Browse the repository at this point in the history
…k the app execution

More specifically, Windows was always showing a crlf error
  • Loading branch information
brunolemos committed Dec 8, 2020
1 parent cf5148c commit 037bc82
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions packages/web/config-overrides.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,5 +40,9 @@ module.exports = function override(config, env) {
}),
)

config.plugins = config.plugins.filter(
(plugin) => plugin?.constructor?.name !== 'ESLintWebpackPlugin',
)

return config
}

0 comments on commit 037bc82

Please sign in to comment.