From bc02c52f8199d7c55e69d54628f8be397d4986f4 Mon Sep 17 00:00:00 2001 From: Toru Nagashima Date: Sat, 4 May 2019 10:24:09 +0900 Subject: [PATCH] 9.0.1 --- lib/rules/exports-style.js | 2 +- lib/rules/file-extension-in-import.js | 2 +- lib/rules/no-deprecated-api.js | 2 +- lib/rules/no-extraneous-import.js | 2 +- lib/rules/no-extraneous-require.js | 2 +- lib/rules/no-hide-core-modules.js | 2 +- lib/rules/no-missing-import.js | 2 +- lib/rules/no-missing-require.js | 2 +- lib/rules/no-unpublished-bin.js | 2 +- lib/rules/no-unpublished-import.js | 2 +- lib/rules/no-unpublished-require.js | 2 +- lib/rules/no-unsupported-features.js | 2 +- lib/rules/no-unsupported-features/es-builtins.js | 2 +- lib/rules/no-unsupported-features/es-syntax.js | 2 +- lib/rules/no-unsupported-features/node-builtins.js | 2 +- lib/rules/prefer-global/buffer.js | 2 +- lib/rules/prefer-global/console.js | 2 +- lib/rules/prefer-global/process.js | 2 +- lib/rules/prefer-global/text-decoder.js | 2 +- lib/rules/prefer-global/text-encoder.js | 2 +- lib/rules/prefer-global/url-search-params.js | 2 +- lib/rules/prefer-global/url.js | 2 +- lib/rules/prefer-promises/dns.js | 2 +- lib/rules/prefer-promises/fs.js | 2 +- lib/rules/process-exit-as-throw.js | 2 +- lib/rules/shebang.js | 2 +- package.json | 2 +- 27 files changed, 27 insertions(+), 27 deletions(-) diff --git a/lib/rules/exports-style.js b/lib/rules/exports-style.js index 85564140..15884204 100644 --- a/lib/rules/exports-style.js +++ b/lib/rules/exports-style.js @@ -146,7 +146,7 @@ module.exports = { category: "Stylistic Issues", recommended: false, url: - "https://github.com/mysticatea/eslint-plugin-node/blob/v9.0.0/docs/rules/exports-style.md", + "https://github.com/mysticatea/eslint-plugin-node/blob/v9.0.1/docs/rules/exports-style.md", }, type: "suggestion", fixable: null, diff --git a/lib/rules/file-extension-in-import.js b/lib/rules/file-extension-in-import.js index 4c6d4e94..122dbe3f 100644 --- a/lib/rules/file-extension-in-import.js +++ b/lib/rules/file-extension-in-import.js @@ -39,7 +39,7 @@ module.exports = { category: "Stylistic Issues", recommended: false, url: - "https://github.com/mysticatea/eslint-plugin-node/blob/v9.0.0/docs/rules/file-extension-in-import.md", + "https://github.com/mysticatea/eslint-plugin-node/blob/v9.0.1/docs/rules/file-extension-in-import.md", }, fixable: "code", messages: { diff --git a/lib/rules/no-deprecated-api.js b/lib/rules/no-deprecated-api.js index 9df49f96..6eb3405f 100644 --- a/lib/rules/no-deprecated-api.js +++ b/lib/rules/no-deprecated-api.js @@ -486,7 +486,7 @@ module.exports = { category: "Best Practices", recommended: true, url: - "https://github.com/mysticatea/eslint-plugin-node/blob/v9.0.0/docs/rules/no-deprecated-api.md", + "https://github.com/mysticatea/eslint-plugin-node/blob/v9.0.1/docs/rules/no-deprecated-api.md", }, type: "problem", fixable: null, diff --git a/lib/rules/no-extraneous-import.js b/lib/rules/no-extraneous-import.js index 0adcef8a..88a915b7 100644 --- a/lib/rules/no-extraneous-import.js +++ b/lib/rules/no-extraneous-import.js @@ -19,7 +19,7 @@ module.exports = { category: "Possible Errors", recommended: true, url: - "https://github.com/mysticatea/eslint-plugin-node/blob/v9.0.0/docs/rules/no-extraneous-import.md", + "https://github.com/mysticatea/eslint-plugin-node/blob/v9.0.1/docs/rules/no-extraneous-import.md", }, type: "problem", fixable: null, diff --git a/lib/rules/no-extraneous-require.js b/lib/rules/no-extraneous-require.js index 8aba4e59..45c99312 100644 --- a/lib/rules/no-extraneous-require.js +++ b/lib/rules/no-extraneous-require.js @@ -19,7 +19,7 @@ module.exports = { category: "Possible Errors", recommended: true, url: - "https://github.com/mysticatea/eslint-plugin-node/blob/v9.0.0/docs/rules/no-extraneous-require.md", + "https://github.com/mysticatea/eslint-plugin-node/blob/v9.0.1/docs/rules/no-extraneous-require.md", }, type: "problem", fixable: null, diff --git a/lib/rules/no-hide-core-modules.js b/lib/rules/no-hide-core-modules.js index 64fc8275..d8e92909 100644 --- a/lib/rules/no-hide-core-modules.js +++ b/lib/rules/no-hide-core-modules.js @@ -55,7 +55,7 @@ module.exports = { category: "Possible Errors", recommended: false, url: - "https://github.com/mysticatea/eslint-plugin-node/blob/v9.0.0/docs/rules/no-hide-core-modules.md", + "https://github.com/mysticatea/eslint-plugin-node/blob/v9.0.1/docs/rules/no-hide-core-modules.md", }, type: "problem", deprecated: true, diff --git a/lib/rules/no-missing-import.js b/lib/rules/no-missing-import.js index a575d873..f13ad242 100644 --- a/lib/rules/no-missing-import.js +++ b/lib/rules/no-missing-import.js @@ -18,7 +18,7 @@ module.exports = { category: "Possible Errors", recommended: true, url: - "https://github.com/mysticatea/eslint-plugin-node/blob/v9.0.0/docs/rules/no-missing-import.md", + "https://github.com/mysticatea/eslint-plugin-node/blob/v9.0.1/docs/rules/no-missing-import.md", }, type: "problem", fixable: null, diff --git a/lib/rules/no-missing-require.js b/lib/rules/no-missing-require.js index 76f1c025..a9e45c97 100644 --- a/lib/rules/no-missing-require.js +++ b/lib/rules/no-missing-require.js @@ -18,7 +18,7 @@ module.exports = { category: "Possible Errors", recommended: true, url: - "https://github.com/mysticatea/eslint-plugin-node/blob/v9.0.0/docs/rules/no-missing-require.md", + "https://github.com/mysticatea/eslint-plugin-node/blob/v9.0.1/docs/rules/no-missing-require.md", }, type: "problem", fixable: null, diff --git a/lib/rules/no-unpublished-bin.js b/lib/rules/no-unpublished-bin.js index 82aae4a1..df9a84b8 100644 --- a/lib/rules/no-unpublished-bin.js +++ b/lib/rules/no-unpublished-bin.js @@ -36,7 +36,7 @@ module.exports = { category: "Possible Errors", recommended: true, url: - "https://github.com/mysticatea/eslint-plugin-node/blob/v9.0.0/docs/rules/no-unpublished-bin.md", + "https://github.com/mysticatea/eslint-plugin-node/blob/v9.0.1/docs/rules/no-unpublished-bin.md", }, type: "problem", fixable: null, diff --git a/lib/rules/no-unpublished-import.js b/lib/rules/no-unpublished-import.js index cd599642..1710f080 100644 --- a/lib/rules/no-unpublished-import.js +++ b/lib/rules/no-unpublished-import.js @@ -19,7 +19,7 @@ module.exports = { category: "Possible Errors", recommended: true, url: - "https://github.com/mysticatea/eslint-plugin-node/blob/v9.0.0/docs/rules/no-unpublished-import.md", + "https://github.com/mysticatea/eslint-plugin-node/blob/v9.0.1/docs/rules/no-unpublished-import.md", }, type: "problem", fixable: null, diff --git a/lib/rules/no-unpublished-require.js b/lib/rules/no-unpublished-require.js index fc611bf2..2c9eb87e 100644 --- a/lib/rules/no-unpublished-require.js +++ b/lib/rules/no-unpublished-require.js @@ -19,7 +19,7 @@ module.exports = { category: "Possible Errors", recommended: true, url: - "https://github.com/mysticatea/eslint-plugin-node/blob/v9.0.0/docs/rules/no-unpublished-require.md", + "https://github.com/mysticatea/eslint-plugin-node/blob/v9.0.1/docs/rules/no-unpublished-require.md", }, type: "problem", fixable: null, diff --git a/lib/rules/no-unsupported-features.js b/lib/rules/no-unsupported-features.js index 980c4224..7bee781d 100644 --- a/lib/rules/no-unsupported-features.js +++ b/lib/rules/no-unsupported-features.js @@ -1051,7 +1051,7 @@ module.exports = { "node/no-unsupported-features/es-builtins", ], url: - "https://github.com/mysticatea/eslint-plugin-node/blob/v9.0.0/docs/rules/no-unsupported-features.md", + "https://github.com/mysticatea/eslint-plugin-node/blob/v9.0.1/docs/rules/no-unsupported-features.md", }, type: "problem", deprecated: true, diff --git a/lib/rules/no-unsupported-features/es-builtins.js b/lib/rules/no-unsupported-features/es-builtins.js index acd5dc96..6f498f4b 100644 --- a/lib/rules/no-unsupported-features/es-builtins.js +++ b/lib/rules/no-unsupported-features/es-builtins.js @@ -129,7 +129,7 @@ module.exports = { category: "Possible Errors", recommended: true, url: - "https://github.com/mysticatea/eslint-plugin-node/blob/v9.0.0/docs/rules/no-unsupported-features/es-builtins.md", + "https://github.com/mysticatea/eslint-plugin-node/blob/v9.0.1/docs/rules/no-unsupported-features/es-builtins.md", }, type: "problem", fixable: null, diff --git a/lib/rules/no-unsupported-features/es-syntax.js b/lib/rules/no-unsupported-features/es-syntax.js index 6fbc41ae..6c1987d6 100644 --- a/lib/rules/no-unsupported-features/es-syntax.js +++ b/lib/rules/no-unsupported-features/es-syntax.js @@ -504,7 +504,7 @@ module.exports = { category: "Possible Errors", recommended: true, url: - "https://github.com/mysticatea/eslint-plugin-node/blob/v9.0.0/docs/rules/no-unsupported-features/es-syntax.md", + "https://github.com/mysticatea/eslint-plugin-node/blob/v9.0.1/docs/rules/no-unsupported-features/es-syntax.md", }, type: "problem", fixable: null, diff --git a/lib/rules/no-unsupported-features/node-builtins.js b/lib/rules/no-unsupported-features/node-builtins.js index d063f764..e6b4f271 100644 --- a/lib/rules/no-unsupported-features/node-builtins.js +++ b/lib/rules/no-unsupported-features/node-builtins.js @@ -265,7 +265,7 @@ module.exports = { category: "Possible Errors", recommended: true, url: - "https://github.com/mysticatea/eslint-plugin-node/blob/v9.0.0/docs/rules/no-unsupported-features/node-builtins.md", + "https://github.com/mysticatea/eslint-plugin-node/blob/v9.0.1/docs/rules/no-unsupported-features/node-builtins.md", }, type: "problem", fixable: null, diff --git a/lib/rules/prefer-global/buffer.js b/lib/rules/prefer-global/buffer.js index c0c77da0..370d8cd7 100644 --- a/lib/rules/prefer-global/buffer.js +++ b/lib/rules/prefer-global/buffer.js @@ -26,7 +26,7 @@ module.exports = { category: "Stylistic Issues", recommended: false, url: - "https://github.com/mysticatea/eslint-plugin-node/blob/v9.0.0/docs/rules/prefer-global/buffer.md", + "https://github.com/mysticatea/eslint-plugin-node/blob/v9.0.1/docs/rules/prefer-global/buffer.md", }, type: "suggestion", fixable: null, diff --git a/lib/rules/prefer-global/console.js b/lib/rules/prefer-global/console.js index 2b0e41dd..5787757c 100644 --- a/lib/rules/prefer-global/console.js +++ b/lib/rules/prefer-global/console.js @@ -23,7 +23,7 @@ module.exports = { category: "Stylistic Issues", recommended: false, url: - "https://github.com/mysticatea/eslint-plugin-node/blob/v9.0.0/docs/rules/prefer-global/console.md", + "https://github.com/mysticatea/eslint-plugin-node/blob/v9.0.1/docs/rules/prefer-global/console.md", }, type: "suggestion", fixable: null, diff --git a/lib/rules/prefer-global/process.js b/lib/rules/prefer-global/process.js index 7a5faea6..43e18beb 100644 --- a/lib/rules/prefer-global/process.js +++ b/lib/rules/prefer-global/process.js @@ -23,7 +23,7 @@ module.exports = { category: "Stylistic Issues", recommended: false, url: - "https://github.com/mysticatea/eslint-plugin-node/blob/v9.0.0/docs/rules/prefer-global/process.md", + "https://github.com/mysticatea/eslint-plugin-node/blob/v9.0.1/docs/rules/prefer-global/process.md", }, type: "suggestion", fixable: null, diff --git a/lib/rules/prefer-global/text-decoder.js b/lib/rules/prefer-global/text-decoder.js index 2a6499fd..dbf4bbf7 100644 --- a/lib/rules/prefer-global/text-decoder.js +++ b/lib/rules/prefer-global/text-decoder.js @@ -26,7 +26,7 @@ module.exports = { category: "Stylistic Issues", recommended: false, url: - "https://github.com/mysticatea/eslint-plugin-node/blob/v9.0.0/docs/rules/prefer-global/text-decoder.md", + "https://github.com/mysticatea/eslint-plugin-node/blob/v9.0.1/docs/rules/prefer-global/text-decoder.md", }, type: "suggestion", fixable: null, diff --git a/lib/rules/prefer-global/text-encoder.js b/lib/rules/prefer-global/text-encoder.js index 8619ffcd..1defb6b1 100644 --- a/lib/rules/prefer-global/text-encoder.js +++ b/lib/rules/prefer-global/text-encoder.js @@ -26,7 +26,7 @@ module.exports = { category: "Stylistic Issues", recommended: false, url: - "https://github.com/mysticatea/eslint-plugin-node/blob/v9.0.0/docs/rules/prefer-global/text-encoder.md", + "https://github.com/mysticatea/eslint-plugin-node/blob/v9.0.1/docs/rules/prefer-global/text-encoder.md", }, type: "suggestion", fixable: null, diff --git a/lib/rules/prefer-global/url-search-params.js b/lib/rules/prefer-global/url-search-params.js index 12d401b9..96d768b5 100644 --- a/lib/rules/prefer-global/url-search-params.js +++ b/lib/rules/prefer-global/url-search-params.js @@ -26,7 +26,7 @@ module.exports = { category: "Stylistic Issues", recommended: false, url: - "https://github.com/mysticatea/eslint-plugin-node/blob/v9.0.0/docs/rules/prefer-global/url-search-params.md", + "https://github.com/mysticatea/eslint-plugin-node/blob/v9.0.1/docs/rules/prefer-global/url-search-params.md", }, type: "suggestion", fixable: null, diff --git a/lib/rules/prefer-global/url.js b/lib/rules/prefer-global/url.js index 8a4b2396..fd4c4a4e 100644 --- a/lib/rules/prefer-global/url.js +++ b/lib/rules/prefer-global/url.js @@ -25,7 +25,7 @@ module.exports = { category: "Stylistic Issues", recommended: false, url: - "https://github.com/mysticatea/eslint-plugin-node/blob/v9.0.0/docs/rules/prefer-global/url.md", + "https://github.com/mysticatea/eslint-plugin-node/blob/v9.0.1/docs/rules/prefer-global/url.md", }, type: "suggestion", fixable: null, diff --git a/lib/rules/prefer-promises/dns.js b/lib/rules/prefer-promises/dns.js index 1b785059..7dc79314 100644 --- a/lib/rules/prefer-promises/dns.js +++ b/lib/rules/prefer-promises/dns.js @@ -36,7 +36,7 @@ module.exports = { category: "Stylistic Issues", recommended: false, url: - "https://github.com/mysticatea/eslint-plugin-node/blob/v9.0.0/docs/rules/prefer-promises/dns.md", + "https://github.com/mysticatea/eslint-plugin-node/blob/v9.0.1/docs/rules/prefer-promises/dns.md", }, fixable: null, messages: { diff --git a/lib/rules/prefer-promises/fs.js b/lib/rules/prefer-promises/fs.js index 43148100..989bf53f 100644 --- a/lib/rules/prefer-promises/fs.js +++ b/lib/rules/prefer-promises/fs.js @@ -42,7 +42,7 @@ module.exports = { category: "Stylistic Issues", recommended: false, url: - "https://github.com/mysticatea/eslint-plugin-node/blob/v9.0.0/docs/rules/prefer-promises/fs.md", + "https://github.com/mysticatea/eslint-plugin-node/blob/v9.0.1/docs/rules/prefer-promises/fs.md", }, fixable: null, messages: { diff --git a/lib/rules/process-exit-as-throw.js b/lib/rules/process-exit-as-throw.js index 08500cd4..d666f57c 100644 --- a/lib/rules/process-exit-as-throw.js +++ b/lib/rules/process-exit-as-throw.js @@ -144,7 +144,7 @@ module.exports = { category: "Possible Errors", recommended: true, url: - "https://github.com/mysticatea/eslint-plugin-node/blob/v9.0.0/docs/rules/process-exit-as-throw.md", + "https://github.com/mysticatea/eslint-plugin-node/blob/v9.0.1/docs/rules/process-exit-as-throw.md", }, type: "problem", fixable: null, diff --git a/lib/rules/shebang.js b/lib/rules/shebang.js index 59b44f22..c6b9c401 100644 --- a/lib/rules/shebang.js +++ b/lib/rules/shebang.js @@ -58,7 +58,7 @@ module.exports = { category: "Possible Errors", recommended: true, url: - "https://github.com/mysticatea/eslint-plugin-node/blob/v9.0.0/docs/rules/shebang.md", + "https://github.com/mysticatea/eslint-plugin-node/blob/v9.0.1/docs/rules/shebang.md", }, type: "problem", fixable: "code", diff --git a/package.json b/package.json index 29292550..b979631b 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "eslint-plugin-node", - "version": "9.0.0", + "version": "9.0.1", "description": "Additional ESLint's rules for Node.js", "engines": { "node": ">=8.10.0"