eslint-plugin-n 17.23.0 → 17.23.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
@@ -146,8 +146,8 @@ For [Shareable Configs](https://eslint.org/docs/latest/developer-guide/shareable
146
146
  | [no-extraneous-import](docs/rules/no-extraneous-import.md) | disallow `import` declarations which import extraneous modules | 🟢 ✅ | | |
147
147
  | [no-extraneous-require](docs/rules/no-extraneous-require.md) | disallow `require()` expressions which import extraneous modules | 🟢 ✅ | | |
148
148
  | [no-hide-core-modules](docs/rules/no-hide-core-modules.md) | disallow third-party modules which are hiding core modules | | | ❌ |
149
- | [no-missing-import](docs/rules/no-missing-import.md) | disallow `import` declarations which import non-existence modules | 🟢 ✅ | | |
150
- | [no-missing-require](docs/rules/no-missing-require.md) | disallow `require()` expressions which import non-existence modules | 🟢 ✅ | | |
149
+ | [no-missing-import](docs/rules/no-missing-import.md) | disallow `import` declarations which import missing modules | 🟢 ✅ | | |
150
+ | [no-missing-require](docs/rules/no-missing-require.md) | disallow `require()` expressions which import missing modules | 🟢 ✅ | | |
151
151
  | [no-mixed-requires](docs/rules/no-mixed-requires.md) | disallow `require` calls to be mixed with regular variable declarations | | | |
152
152
  | [no-new-require](docs/rules/no-new-require.md) | disallow `new` operators with calls to `require` | | | |
153
153
  | [no-path-concat](docs/rules/no-path-concat.md) | disallow string concatenation with `__dirname` and `__filename` | | | |
@@ -31,7 +31,7 @@ module.exports = {
31
31
  meta: {
32
32
  docs: {
33
33
  description:
34
- "disallow `import` declarations which import non-existence modules",
34
+ "disallow `import` declarations which import missing modules",
35
35
  recommended: true,
36
36
  url: "https://github.com/eslint-community/eslint-plugin-n/blob/HEAD/docs/rules/no-missing-import.md",
37
37
  },
@@ -18,7 +18,7 @@ module.exports = {
18
18
  meta: {
19
19
  docs: {
20
20
  description:
21
- "disallow `require()` expressions which import non-existence modules",
21
+ "disallow `require()` expressions which import missing modules",
22
22
  recommended: true,
23
23
  url: "https://github.com/eslint-community/eslint-plugin-n/blob/HEAD/docs/rules/no-missing-require.md",
24
24
  },
@@ -14,7 +14,7 @@ const tls = {
14
14
  },
15
15
  createServer: { [READ]: { supported: ["0.3.2"] } },
16
16
  CryptoStream: { [READ]: { supported: ["0.3.4"], deprecated: ["0.11.3"] } },
17
- DEFAULT_CIPHERS: { [READ]: { supported: ["19.8.0", "18.16.0"] } },
17
+ DEFAULT_CIPHERS: { [READ]: { supported: ["0.11.3"] } },
18
18
  DEFAULT_ECDH_CURVE: { [READ]: { supported: ["0.11.13"] } },
19
19
  DEFAULT_MAX_VERSION: { [READ]: { supported: ["11.4.0"] } },
20
20
  DEFAULT_MIN_VERSION: { [READ]: { supported: ["11.4.0"] } },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eslint-plugin-n",
3
- "version": "17.23.0",
3
+ "version": "17.23.1",
4
4
  "description": "Additional ESLint's rules for Node.js",
5
5
  "engines": {
6
6
  "node": "^18.18.0 || ^20.9.0 || >=21.1.0"