Skip to content

Commit dc067a1

Browse files
committed
🔖 10.0.0
1 parent 1fe8c52 commit dc067a1

29 files changed

+29
-29
lines changed

‎lib/rules/exports-style.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ module.exports = {
146146
category: "Stylistic Issues",
147147
recommended: false,
148148
url:
149-
"https://github.com/mysticatea/eslint-plugin-node/blob/v9.2.0/docs/rules/exports-style.md",
149+
"https://github.com/mysticatea/eslint-plugin-node/blob/v10.0.0/docs/rules/exports-style.md",
150150
},
151151
type: "suggestion",
152152
fixable: null,

‎lib/rules/file-extension-in-import.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ module.exports = {
3939
category: "Stylistic Issues",
4040
recommended: false,
4141
url:
42-
"https://github.com/mysticatea/eslint-plugin-node/blob/v9.2.0/docs/rules/file-extension-in-import.md",
42+
"https://github.com/mysticatea/eslint-plugin-node/blob/v10.0.0/docs/rules/file-extension-in-import.md",
4343
},
4444
fixable: "code",
4545
messages: {

‎lib/rules/no-callback-literal.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ module.exports = {
1212
category: "Possible Errors",
1313
recommended: false,
1414
url:
15-
"https://github.com/mysticatea/eslint-plugin-node/blob/v9.2.0/docs/rules/no-callback-literal.md",
15+
"https://github.com/mysticatea/eslint-plugin-node/blob/v10.0.0/docs/rules/no-callback-literal.md",
1616
},
1717
type: "problem",
1818
fixable: null,

‎lib/rules/no-deprecated-api.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -733,7 +733,7 @@ module.exports = {
733733
category: "Best Practices",
734734
recommended: true,
735735
url:
736-
"https://github.com/mysticatea/eslint-plugin-node/blob/v9.2.0/docs/rules/no-deprecated-api.md",
736+
"https://github.com/mysticatea/eslint-plugin-node/blob/v10.0.0/docs/rules/no-deprecated-api.md",
737737
},
738738
type: "problem",
739739
fixable: null,

‎lib/rules/no-exports-assign.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ module.exports = {
4141
category: "Possible Errors",
4242
recommended: true,
4343
url:
44-
"https://github.com/mysticatea/eslint-plugin-node/blob/v9.2.0/docs/rules/no-exports-assign.md",
44+
"https://github.com/mysticatea/eslint-plugin-node/blob/v10.0.0/docs/rules/no-exports-assign.md",
4545
},
4646
fixable: null,
4747
messages: {

‎lib/rules/no-extraneous-import.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ module.exports = {
1919
category: "Possible Errors",
2020
recommended: true,
2121
url:
22-
"https://github.com/mysticatea/eslint-plugin-node/blob/v9.2.0/docs/rules/no-extraneous-import.md",
22+
"https://github.com/mysticatea/eslint-plugin-node/blob/v10.0.0/docs/rules/no-extraneous-import.md",
2323
},
2424
type: "problem",
2525
fixable: null,

‎lib/rules/no-extraneous-require.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ module.exports = {
1919
category: "Possible Errors",
2020
recommended: true,
2121
url:
22-
"https://github.com/mysticatea/eslint-plugin-node/blob/v9.2.0/docs/rules/no-extraneous-require.md",
22+
"https://github.com/mysticatea/eslint-plugin-node/blob/v10.0.0/docs/rules/no-extraneous-require.md",
2323
},
2424
type: "problem",
2525
fixable: null,

‎lib/rules/no-hide-core-modules.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ module.exports = {
5656
category: "Possible Errors",
5757
recommended: false,
5858
url:
59-
"https://github.com/mysticatea/eslint-plugin-node/blob/v9.2.0/docs/rules/no-hide-core-modules.md",
59+
"https://github.com/mysticatea/eslint-plugin-node/blob/v10.0.0/docs/rules/no-hide-core-modules.md",
6060
},
6161
type: "problem",
6262
deprecated: true,

‎lib/rules/no-missing-import.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ module.exports = {
1818
category: "Possible Errors",
1919
recommended: true,
2020
url:
21-
"https://github.com/mysticatea/eslint-plugin-node/blob/v9.2.0/docs/rules/no-missing-import.md",
21+
"https://github.com/mysticatea/eslint-plugin-node/blob/v10.0.0/docs/rules/no-missing-import.md",
2222
},
2323
type: "problem",
2424
fixable: null,

‎lib/rules/no-missing-require.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ module.exports = {
1818
category: "Possible Errors",
1919
recommended: true,
2020
url:
21-
"https://github.com/mysticatea/eslint-plugin-node/blob/v9.2.0/docs/rules/no-missing-require.md",
21+
"https://github.com/mysticatea/eslint-plugin-node/blob/v10.0.0/docs/rules/no-missing-require.md",
2222
},
2323
type: "problem",
2424
fixable: null,

‎lib/rules/no-unpublished-bin.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ module.exports = {
3636
category: "Possible Errors",
3737
recommended: true,
3838
url:
39-
"https://github.com/mysticatea/eslint-plugin-node/blob/v9.2.0/docs/rules/no-unpublished-bin.md",
39+
"https://github.com/mysticatea/eslint-plugin-node/blob/v10.0.0/docs/rules/no-unpublished-bin.md",
4040
},
4141
type: "problem",
4242
fixable: null,

‎lib/rules/no-unpublished-import.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ module.exports = {
1919
category: "Possible Errors",
2020
recommended: true,
2121
url:
22-
"https://github.com/mysticatea/eslint-plugin-node/blob/v9.2.0/docs/rules/no-unpublished-import.md",
22+
"https://github.com/mysticatea/eslint-plugin-node/blob/v10.0.0/docs/rules/no-unpublished-import.md",
2323
},
2424
type: "problem",
2525
fixable: null,

‎lib/rules/no-unpublished-require.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ module.exports = {
1919
category: "Possible Errors",
2020
recommended: true,
2121
url:
22-
"https://github.com/mysticatea/eslint-plugin-node/blob/v9.2.0/docs/rules/no-unpublished-require.md",
22+
"https://github.com/mysticatea/eslint-plugin-node/blob/v10.0.0/docs/rules/no-unpublished-require.md",
2323
},
2424
type: "problem",
2525
fixable: null,

‎lib/rules/no-unsupported-features.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1051,7 +1051,7 @@ module.exports = {
10511051
"node/no-unsupported-features/es-builtins",
10521052
],
10531053
url:
1054-
"https://github.com/mysticatea/eslint-plugin-node/blob/v9.2.0/docs/rules/no-unsupported-features.md",
1054+
"https://github.com/mysticatea/eslint-plugin-node/blob/v10.0.0/docs/rules/no-unsupported-features.md",
10551055
},
10561056
type: "problem",
10571057
deprecated: true,

‎lib/rules/no-unsupported-features/es-builtins.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ module.exports = {
139139
category: "Possible Errors",
140140
recommended: true,
141141
url:
142-
"https://github.com/mysticatea/eslint-plugin-node/blob/v9.2.0/docs/rules/no-unsupported-features/es-builtins.md",
142+
"https://github.com/mysticatea/eslint-plugin-node/blob/v10.0.0/docs/rules/no-unsupported-features/es-builtins.md",
143143
},
144144
type: "problem",
145145
fixable: null,

‎lib/rules/no-unsupported-features/es-syntax.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -493,7 +493,7 @@ module.exports = {
493493
category: "Possible Errors",
494494
recommended: true,
495495
url:
496-
"https://github.com/mysticatea/eslint-plugin-node/blob/v9.2.0/docs/rules/no-unsupported-features/es-syntax.md",
496+
"https://github.com/mysticatea/eslint-plugin-node/blob/v10.0.0/docs/rules/no-unsupported-features/es-syntax.md",
497497
},
498498
type: "problem",
499499
fixable: null,

‎lib/rules/no-unsupported-features/node-builtins.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -265,7 +265,7 @@ module.exports = {
265265
category: "Possible Errors",
266266
recommended: true,
267267
url:
268-
"https://github.com/mysticatea/eslint-plugin-node/blob/v9.2.0/docs/rules/no-unsupported-features/node-builtins.md",
268+
"https://github.com/mysticatea/eslint-plugin-node/blob/v10.0.0/docs/rules/no-unsupported-features/node-builtins.md",
269269
},
270270
type: "problem",
271271
fixable: null,

‎lib/rules/prefer-global/buffer.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ module.exports = {
2626
category: "Stylistic Issues",
2727
recommended: false,
2828
url:
29-
"https://github.com/mysticatea/eslint-plugin-node/blob/v9.2.0/docs/rules/prefer-global/buffer.md",
29+
"https://github.com/mysticatea/eslint-plugin-node/blob/v10.0.0/docs/rules/prefer-global/buffer.md",
3030
},
3131
type: "suggestion",
3232
fixable: null,

‎lib/rules/prefer-global/console.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ module.exports = {
2323
category: "Stylistic Issues",
2424
recommended: false,
2525
url:
26-
"https://github.com/mysticatea/eslint-plugin-node/blob/v9.2.0/docs/rules/prefer-global/console.md",
26+
"https://github.com/mysticatea/eslint-plugin-node/blob/v10.0.0/docs/rules/prefer-global/console.md",
2727
},
2828
type: "suggestion",
2929
fixable: null,

‎lib/rules/prefer-global/process.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ module.exports = {
2323
category: "Stylistic Issues",
2424
recommended: false,
2525
url:
26-
"https://github.com/mysticatea/eslint-plugin-node/blob/v9.2.0/docs/rules/prefer-global/process.md",
26+
"https://github.com/mysticatea/eslint-plugin-node/blob/v10.0.0/docs/rules/prefer-global/process.md",
2727
},
2828
type: "suggestion",
2929
fixable: null,

‎lib/rules/prefer-global/text-decoder.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ module.exports = {
2626
category: "Stylistic Issues",
2727
recommended: false,
2828
url:
29-
"https://github.com/mysticatea/eslint-plugin-node/blob/v9.2.0/docs/rules/prefer-global/text-decoder.md",
29+
"https://github.com/mysticatea/eslint-plugin-node/blob/v10.0.0/docs/rules/prefer-global/text-decoder.md",
3030
},
3131
type: "suggestion",
3232
fixable: null,

‎lib/rules/prefer-global/text-encoder.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ module.exports = {
2626
category: "Stylistic Issues",
2727
recommended: false,
2828
url:
29-
"https://github.com/mysticatea/eslint-plugin-node/blob/v9.2.0/docs/rules/prefer-global/text-encoder.md",
29+
"https://github.com/mysticatea/eslint-plugin-node/blob/v10.0.0/docs/rules/prefer-global/text-encoder.md",
3030
},
3131
type: "suggestion",
3232
fixable: null,

‎lib/rules/prefer-global/url-search-params.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ module.exports = {
2626
category: "Stylistic Issues",
2727
recommended: false,
2828
url:
29-
"https://github.com/mysticatea/eslint-plugin-node/blob/v9.2.0/docs/rules/prefer-global/url-search-params.md",
29+
"https://github.com/mysticatea/eslint-plugin-node/blob/v10.0.0/docs/rules/prefer-global/url-search-params.md",
3030
},
3131
type: "suggestion",
3232
fixable: null,

‎lib/rules/prefer-global/url.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ module.exports = {
2525
category: "Stylistic Issues",
2626
recommended: false,
2727
url:
28-
"https://github.com/mysticatea/eslint-plugin-node/blob/v9.2.0/docs/rules/prefer-global/url.md",
28+
"https://github.com/mysticatea/eslint-plugin-node/blob/v10.0.0/docs/rules/prefer-global/url.md",
2929
},
3030
type: "suggestion",
3131
fixable: null,

‎lib/rules/prefer-promises/dns.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ module.exports = {
3636
category: "Stylistic Issues",
3737
recommended: false,
3838
url:
39-
"https://github.com/mysticatea/eslint-plugin-node/blob/v9.2.0/docs/rules/prefer-promises/dns.md",
39+
"https://github.com/mysticatea/eslint-plugin-node/blob/v10.0.0/docs/rules/prefer-promises/dns.md",
4040
},
4141
fixable: null,
4242
messages: {

‎lib/rules/prefer-promises/fs.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ module.exports = {
4242
category: "Stylistic Issues",
4343
recommended: false,
4444
url:
45-
"https://github.com/mysticatea/eslint-plugin-node/blob/v9.2.0/docs/rules/prefer-promises/fs.md",
45+
"https://github.com/mysticatea/eslint-plugin-node/blob/v10.0.0/docs/rules/prefer-promises/fs.md",
4646
},
4747
fixable: null,
4848
messages: {

‎lib/rules/process-exit-as-throw.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ module.exports = {
151151
category: "Possible Errors",
152152
recommended: true,
153153
url:
154-
"https://github.com/mysticatea/eslint-plugin-node/blob/v9.2.0/docs/rules/process-exit-as-throw.md",
154+
"https://github.com/mysticatea/eslint-plugin-node/blob/v10.0.0/docs/rules/process-exit-as-throw.md",
155155
},
156156
type: "problem",
157157
fixable: null,

‎lib/rules/shebang.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ module.exports = {
7373
category: "Possible Errors",
7474
recommended: true,
7575
url:
76-
"https://github.com/mysticatea/eslint-plugin-node/blob/v9.2.0/docs/rules/shebang.md",
76+
"https://github.com/mysticatea/eslint-plugin-node/blob/v10.0.0/docs/rules/shebang.md",
7777
},
7878
type: "problem",
7979
fixable: "code",

‎package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "eslint-plugin-node",
3-
"version": "9.2.0",
3+
"version": "10.0.0",
44
"description": "Additional ESLint's rules for Node.js",
55
"engines": {
66
"node": ">=8.10.0"

0 commit comments

Comments
 (0)