Skip to content

Commit

Permalink
🩹 fix(patch): eslint: lintDirtyModulesOnly is false by default (#2638)
Browse files Browse the repository at this point in the history
Set `lintDirtyModulesOnly` option to `false`. 

Upstream bug, same as with `threads` option: webpack-contrib/eslint-webpack-plugin#146

## Type of change

**PATCH: backwards compatible change**
  • Loading branch information
kellymears authored Aug 15, 2024
1 parent ebfb53a commit 8defe34
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 17 deletions.
32 changes: 16 additions & 16 deletions sources/@repo/yarn-plugin-bud/bundles/@yarnpkg/plugin-bud.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion sources/@roots/bud-eslint/src/extension/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ import Plugin from 'eslint-webpack-plugin'
failOnWarning: false,
fix: false,
formatter: `stylish`,
lintDirtyModulesOnly: Value.make(({isDevelopment}) => isDevelopment),
lintDirtyModulesOnly: false,
overrideConfig: undefined,
resolvePluginsRelativeTo: Value.make(({path}) => path()),
threads: false,
Expand Down

0 comments on commit 8defe34

Please sign in to comment.