@html-validate/eslint-config 5.5.18 → 5.5.20

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/cli.js CHANGED
@@ -11745,7 +11745,10 @@ var require_nodefs_handler = __commonJS({
11745
11745
  const wasThrottled = throttler ? throttler.clear() : false;
11746
11746
  resolve();
11747
11747
  previous.getChildren().filter((item) => {
11748
- return item !== directory && !current.has(item) && (!wh.hasGlob || wh.filterPath({
11748
+ return item !== directory && !current.has(item) && // in case of intersecting globs;
11749
+ // a path may have been filtered out of this readdir, but
11750
+ // shouldn't be removed because it matches a different glob
11751
+ (!wh.hasGlob || wh.filterPath({
11749
11752
  fullPath: sysPath.resolve(directory, item)
11750
11753
  }));
11751
11754
  }).forEach((item) => {
@@ -14442,7 +14445,7 @@ var require_package = __commonJS({
14442
14445
  "package.json"(exports, module2) {
14443
14446
  module2.exports = {
14444
14447
  name: "@html-validate/eslint-config",
14445
- version: "5.5.15",
14448
+ version: "5.5.19",
14446
14449
  description: "Eslint sharable config used by the various HTML-validate packages",
14447
14450
  keywords: [
14448
14451
  "eslint"
@@ -14476,16 +14479,16 @@ var require_package = __commonJS({
14476
14479
  },
14477
14480
  dependencies: {
14478
14481
  "@rushstack/eslint-patch": "1.2.0",
14479
- eslint: "8.31.0",
14482
+ eslint: "8.32.0",
14480
14483
  "eslint-config-prettier": "8.6.0",
14481
14484
  "eslint-config-sidvind": "1.3.2",
14482
14485
  "eslint-formatter-gitlab": "4.0.0",
14483
14486
  "eslint-plugin-array-func": "3.1.8",
14484
- "eslint-plugin-import": "2.26.0",
14487
+ "eslint-plugin-import": "2.27.5",
14485
14488
  "eslint-plugin-node": "11.1.0",
14486
14489
  "eslint-plugin-prettier": "4.2.1",
14487
- "eslint-plugin-security": "1.5.0",
14488
- "eslint-plugin-sonarjs": "0.17.0"
14490
+ "eslint-plugin-security": "1.6.0",
14491
+ "eslint-plugin-sonarjs": "0.18.0"
14489
14492
  },
14490
14493
  devDependencies: {
14491
14494
  argparse: "2.0.1",