-
-
Notifications
You must be signed in to change notification settings - Fork 72
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* refactor: plugin * fix: handle compilation.fileTimestamps * chore: update deps * feat: add support for stylelint 11 * test: wip * chore: update deps * feat: new options * test: rewrite * feat: new option `stylelintPath` * style: formatting * chore: update lock files * test: add test for `context` option * test: add test for `lintDirtyModulesOnly` option * chore: update deps * fix: plugin name * fix: compiler.fileTimestamps only Map * test: add test for empty dir * test: ignote coverage for hook watchRun * test: add test for LintDirtyModulesPlugin * chore: update deps * test: invert parameters to simplify
- Loading branch information
1 parent
94de976
commit 74838fb
Showing
80 changed files
with
15,432 additions
and
16,136 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,5 @@ | ||
/node_modules | ||
/coverage | ||
/dist | ||
/node_modules | ||
/test/fixtures | ||
/test/output |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,4 @@ | ||
module.exports = { | ||
root: true, | ||
plugins: ['prettier'], | ||
extends: ['@webpack-contrib/eslint-config-webpack'], | ||
rules: { | ||
'prettier/prettier': [ | ||
'error', | ||
{ singleQuote: true, trailingComma: 'es5', arrowParens: 'always' }, | ||
], | ||
}, | ||
extends: ['@webpack-contrib/eslint-config-webpack', 'prettier'], | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
package-lock.json -diff | ||
* text=auto | ||
bin/* eol=lf | ||
package-lock.json -diff | ||
yarn.lock -diff |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.