eslint 10.0.0 → 10.0.1

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/README.md CHANGED
@@ -351,7 +351,7 @@ to get your logo on our READMEs and [website](https://eslint.org/sponsors).
351
351
  <h3>Platinum Sponsors</h3>
352
352
  <p><a href="https://automattic.com"><img src="https://images.opencollective.com/automattic/d0ef3e1/logo.png" alt="Automattic" height="128"></a></p><h3>Gold Sponsors</h3>
353
353
  <p><a href="https://qlty.sh/"><img src="https://images.opencollective.com/qltysh/33d157d/logo.png" alt="Qlty Software" height="96"></a> <a href="https://shopify.engineering/"><img src="https://avatars.githubusercontent.com/u/8085" alt="Shopify" height="96"></a></p><h3>Silver Sponsors</h3>
354
- <p><a href="https://vite.dev/"><img src="https://images.opencollective.com/vite/d472863/logo.png" alt="Vite" height="64"></a> <a href="https://liftoff.io/"><img src="https://images.opencollective.com/liftoff/2d6c3b6/logo.png" alt="Liftoff" height="64"></a> <a href="https://americanexpress.io"><img src="https://avatars.githubusercontent.com/u/3853301" alt="American Express" height="64"></a> <a href="https://stackblitz.com"><img src="https://avatars.githubusercontent.com/u/28635252" alt="StackBlitz" height="64"></a></p><h3>Bronze Sponsors</h3>
354
+ <p><a href="https://vite.dev/"><img src="https://images.opencollective.com/vite/d472863/logo.png" alt="Vite" height="64"></a> <a href="https://liftoff.io/"><img src="https://images.opencollective.com/liftoff/2d6c3b6/logo.png" alt="Liftoff" height="64"></a> <a href="https://stackblitz.com"><img src="https://avatars.githubusercontent.com/u/28635252" alt="StackBlitz" height="64"></a></p><h3>Bronze Sponsors</h3>
355
355
  <p><a href="https://cybozu.co.jp/"><img src="https://images.opencollective.com/cybozu/933e46d/logo.png" alt="Cybozu" height="32"></a> <a href="https://opensource.sap.com"><img src="https://avatars.githubusercontent.com/u/2531208" alt="SAP" height="32"></a> <a href="https://www.crawljobs.com/"><img src="https://images.opencollective.com/crawljobs-poland/fa43a17/logo.png" alt="CrawlJobs" height="32"></a> <a href="https://depot.dev"><img src="https://images.opencollective.com/depot/39125a1/logo.png" alt="Depot" height="32"></a> <a href="https://www.n-ix.com/"><img src="https://images.opencollective.com/n-ix-ltd/575a7a5/logo.png" alt="N-iX Ltd" height="32"></a> <a href="https://icons8.com/"><img src="https://images.opencollective.com/icons8/7fa1641/logo.png" alt="Icons8" height="32"></a> <a href="https://discord.com"><img src="https://images.opencollective.com/discordapp/f9645d9/logo.png" alt="Discord" height="32"></a> <a href="https://www.gitbook.com"><img src="https://avatars.githubusercontent.com/u/7111340" alt="GitBook" height="32"></a> <a href="https://herocoders.com"><img src="https://avatars.githubusercontent.com/u/37549774" alt="HeroCoders" height="32"></a> <a href="https://www.lambdatest.com"><img src="https://avatars.githubusercontent.com/u/171592363" alt="TestMu AI Open Source Office (Formerly LambdaTest)" height="32"></a></p>
356
356
  <h3>Technology Sponsors</h3>
357
357
  Technology sponsors allow us to use their products and services for free as part of a contribution to the open source ecosystem and our work.
package/lib/cli.js CHANGED
@@ -499,7 +499,7 @@ const cli = {
499
499
 
500
500
  if (unusedSuppressionsCount > 0) {
501
501
  log.error(
502
- "There are suppressions left that do not occur anymore. Consider re-running the command with `--prune-suppressions`.",
502
+ "There are suppressions left that do not occur anymore. To resolve this, re-run the command with `--prune-suppressions` to remove unused suppressions. To ignore unused suppressions, use `--pass-on-unpruned-suppressions`.",
503
503
  );
504
504
  debug(JSON.stringify(unusedSuppressions, null, 2));
505
505
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eslint",
3
- "version": "10.0.0",
3
+ "version": "10.0.1",
4
4
  "author": "Nicholas C. Zakas <nicholas+npm@nczconsulting.com>",
5
5
  "description": "An AST-based pattern checker for JavaScript.",
6
6
  "type": "commonjs",
@@ -108,7 +108,7 @@
108
108
  "dependencies": {
109
109
  "@eslint-community/eslint-utils": "^4.8.0",
110
110
  "@eslint-community/regexpp": "^4.12.2",
111
- "@eslint/config-array": "^0.23.0",
111
+ "@eslint/config-array": "^0.23.2",
112
112
  "@eslint/config-helpers": "^0.5.2",
113
113
  "@eslint/core": "^1.1.0",
114
114
  "@eslint/plugin-kit": "^0.6.0",
@@ -120,9 +120,9 @@
120
120
  "cross-spawn": "^7.0.6",
121
121
  "debug": "^4.3.2",
122
122
  "escape-string-regexp": "^4.0.0",
123
- "eslint-scope": "^9.1.0",
124
- "eslint-visitor-keys": "^5.0.0",
125
- "espree": "^11.1.0",
123
+ "eslint-scope": "^9.1.1",
124
+ "eslint-visitor-keys": "^5.0.1",
125
+ "espree": "^11.1.1",
126
126
  "esquery": "^1.7.0",
127
127
  "esutils": "^2.0.2",
128
128
  "fast-deep-equal": "^3.1.3",
@@ -133,7 +133,7 @@
133
133
  "imurmurhash": "^0.1.4",
134
134
  "is-glob": "^4.0.0",
135
135
  "json-stable-stringify-without-jsonify": "^1.0.1",
136
- "minimatch": "^10.1.1",
136
+ "minimatch": "^10.2.1",
137
137
  "natural-compare": "^1.4.0",
138
138
  "optionator": "^0.9.3"
139
139
  },
@@ -147,7 +147,7 @@
147
147
  "@trunkio/launcher": "^1.3.4",
148
148
  "@types/esquery": "^1.5.4",
149
149
  "@types/node": "^22.13.14",
150
- "@typescript-eslint/parser": "^8.54.0",
150
+ "@typescript-eslint/parser": "^8.56.0",
151
151
  "babel-loader": "^8.0.5",
152
152
  "c8": "^7.12.0",
153
153
  "chai": "^4.0.1",
@@ -1,16 +0,0 @@
1
- "use strict";
2
-
3
- module.exports = function (it) {
4
- const { pattern } = it;
5
-
6
- return `
7
- You are linting "${pattern}", but all of the files matching the glob pattern "${pattern}" are ignored.
8
-
9
- If you don't want to lint these files, remove the pattern "${pattern}" from the list of arguments passed to ESLint.
10
-
11
- If you do want to lint these files, try the following solutions:
12
-
13
- * Check your .eslintignore file, or the eslintIgnore property in package.json, to ensure that the files are not configured to be ignored.
14
- * Explicitly list the files from this glob that you'd like to lint on the command-line, rather than providing a glob as an argument.
15
- `.trimStart();
16
- };
@@ -1,8 +0,0 @@
1
- "use strict";
2
-
3
- module.exports = function () {
4
- return `
5
- The '--print-config' CLI option requires a path to a source code file rather than a directory.
6
- See also: https://eslint.org/docs/latest/use/command-line-interface#--print-config
7
- `.trimStart();
8
- };