From a4a7ad2388afd423ffd0a98ed11b0a0144fd81f7 Mon Sep 17 00:00:00 2001 From: Toru Nagashima Date: Tue, 17 Jul 2018 21:25:23 +0900 Subject: [PATCH] 7.0.1 --- lib/rules/exports-style.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/url-search-params.js | 2 +- lib/rules/prefer-global/url.js | 2 +- lib/rules/process-exit-as-throw.js | 2 +- lib/rules/shebang.js | 2 +- package.json | 2 +- 22 files changed, 22 insertions(+), 22 deletions(-) diff --git a/lib/rules/exports-style.js b/lib/rules/exports-style.js index c00a8866..b4fc53fb 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/v7.0.0/docs/rules/exports-style.md", + "https://github.com/mysticatea/eslint-plugin-node/blob/v7.0.1/docs/rules/exports-style.md", }, fixable: null, schema: [ diff --git a/lib/rules/no-deprecated-api.js b/lib/rules/no-deprecated-api.js index c5a527ef..f4f79ab5 100644 --- a/lib/rules/no-deprecated-api.js +++ b/lib/rules/no-deprecated-api.js @@ -422,7 +422,7 @@ module.exports = { category: "Best Practices", recommended: true, url: - "https://github.com/mysticatea/eslint-plugin-node/blob/v7.0.0/docs/rules/no-deprecated-api.md", + "https://github.com/mysticatea/eslint-plugin-node/blob/v7.0.1/docs/rules/no-deprecated-api.md", }, fixable: null, schema: [ diff --git a/lib/rules/no-extraneous-import.js b/lib/rules/no-extraneous-import.js index ce69b29f..3d08ea41 100644 --- a/lib/rules/no-extraneous-import.js +++ b/lib/rules/no-extraneous-import.js @@ -18,7 +18,7 @@ module.exports = { category: "Possible Errors", recommended: false, url: - "https://github.com/mysticatea/eslint-plugin-node/blob/v7.0.0/docs/rules/no-extraneous-import.md", + "https://github.com/mysticatea/eslint-plugin-node/blob/v7.0.1/docs/rules/no-extraneous-import.md", }, fixable: null, schema: [ diff --git a/lib/rules/no-extraneous-require.js b/lib/rules/no-extraneous-require.js index dea9d3e1..b74a8eb8 100644 --- a/lib/rules/no-extraneous-require.js +++ b/lib/rules/no-extraneous-require.js @@ -18,7 +18,7 @@ module.exports = { category: "Possible Errors", recommended: true, url: - "https://github.com/mysticatea/eslint-plugin-node/blob/v7.0.0/docs/rules/no-extraneous-require.md", + "https://github.com/mysticatea/eslint-plugin-node/blob/v7.0.1/docs/rules/no-extraneous-require.md", }, fixable: null, schema: [ diff --git a/lib/rules/no-hide-core-modules.js b/lib/rules/no-hide-core-modules.js index a51f8d27..317919dc 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/v7.0.0/docs/rules/no-hide-core-modules.md", + "https://github.com/mysticatea/eslint-plugin-node/blob/v7.0.1/docs/rules/no-hide-core-modules.md", }, deprecated: true, fixable: null, diff --git a/lib/rules/no-missing-import.js b/lib/rules/no-missing-import.js index c68e17ba..fa1038eb 100644 --- a/lib/rules/no-missing-import.js +++ b/lib/rules/no-missing-import.js @@ -17,7 +17,7 @@ module.exports = { category: "Possible Errors", recommended: false, url: - "https://github.com/mysticatea/eslint-plugin-node/blob/v7.0.0/docs/rules/no-missing-import.md", + "https://github.com/mysticatea/eslint-plugin-node/blob/v7.0.1/docs/rules/no-missing-import.md", }, fixable: null, schema: [ diff --git a/lib/rules/no-missing-require.js b/lib/rules/no-missing-require.js index 24098569..5e321ea2 100644 --- a/lib/rules/no-missing-require.js +++ b/lib/rules/no-missing-require.js @@ -17,7 +17,7 @@ module.exports = { category: "Possible Errors", recommended: true, url: - "https://github.com/mysticatea/eslint-plugin-node/blob/v7.0.0/docs/rules/no-missing-require.md", + "https://github.com/mysticatea/eslint-plugin-node/blob/v7.0.1/docs/rules/no-missing-require.md", }, fixable: null, schema: [ diff --git a/lib/rules/no-unpublished-bin.js b/lib/rules/no-unpublished-bin.js index 99cb13c1..5744c23f 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/v7.0.0/docs/rules/no-unpublished-bin.md", + "https://github.com/mysticatea/eslint-plugin-node/blob/v7.0.1/docs/rules/no-unpublished-bin.md", }, fixable: null, schema: [ diff --git a/lib/rules/no-unpublished-import.js b/lib/rules/no-unpublished-import.js index 5939f70d..f58dfecb 100644 --- a/lib/rules/no-unpublished-import.js +++ b/lib/rules/no-unpublished-import.js @@ -18,7 +18,7 @@ module.exports = { category: "Possible Errors", recommended: false, url: - "https://github.com/mysticatea/eslint-plugin-node/blob/v7.0.0/docs/rules/no-unpublished-import.md", + "https://github.com/mysticatea/eslint-plugin-node/blob/v7.0.1/docs/rules/no-unpublished-import.md", }, fixable: null, schema: [ diff --git a/lib/rules/no-unpublished-require.js b/lib/rules/no-unpublished-require.js index ae25cf71..4ce2c8eb 100644 --- a/lib/rules/no-unpublished-require.js +++ b/lib/rules/no-unpublished-require.js @@ -18,7 +18,7 @@ module.exports = { category: "Possible Errors", recommended: true, url: - "https://github.com/mysticatea/eslint-plugin-node/blob/v7.0.0/docs/rules/no-unpublished-require.md", + "https://github.com/mysticatea/eslint-plugin-node/blob/v7.0.1/docs/rules/no-unpublished-require.md", }, fixable: null, schema: [ diff --git a/lib/rules/no-unsupported-features.js b/lib/rules/no-unsupported-features.js index 01cc87be..a5ab6020 100644 --- a/lib/rules/no-unsupported-features.js +++ b/lib/rules/no-unsupported-features.js @@ -1048,7 +1048,7 @@ module.exports = { recommended: false, replacedBy: ["no-unsupported-ecma-features"], url: - "https://github.com/mysticatea/eslint-plugin-node/blob/v7.0.0/docs/rules/no-unsupported-features.md", + "https://github.com/mysticatea/eslint-plugin-node/blob/v7.0.1/docs/rules/no-unsupported-features.md", }, deprecated: true, fixable: null, diff --git a/lib/rules/no-unsupported-features/es-builtins.js b/lib/rules/no-unsupported-features/es-builtins.js index fe05e828..7d887dc8 100644 --- a/lib/rules/no-unsupported-features/es-builtins.js +++ b/lib/rules/no-unsupported-features/es-builtins.js @@ -128,7 +128,7 @@ module.exports = { category: "Possible Errors", recommended: true, url: - "https://github.com/mysticatea/eslint-plugin-node/blob/v7.0.0/docs/rules/no-unsupported-features/es-builtins.md", + "https://github.com/mysticatea/eslint-plugin-node/blob/v7.0.1/docs/rules/no-unsupported-features/es-builtins.md", }, fixable: null, schema: [ diff --git a/lib/rules/no-unsupported-features/es-syntax.js b/lib/rules/no-unsupported-features/es-syntax.js index 25b18a63..b3453fd4 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/v7.0.0/docs/rules/no-unsupported-features/es-syntax.md", + "https://github.com/mysticatea/eslint-plugin-node/blob/v7.0.1/docs/rules/no-unsupported-features/es-syntax.md", }, fixable: null, schema: [ diff --git a/lib/rules/no-unsupported-features/node-builtins.js b/lib/rules/no-unsupported-features/node-builtins.js index f1ce01fc..af50afe4 100644 --- a/lib/rules/no-unsupported-features/node-builtins.js +++ b/lib/rules/no-unsupported-features/node-builtins.js @@ -212,7 +212,7 @@ module.exports = { category: "Possible Errors", recommended: true, url: - "https://github.com/mysticatea/eslint-plugin-node/blob/v7.0.0/docs/rules/no-unsupported-features/node-builtins.md", + "https://github.com/mysticatea/eslint-plugin-node/blob/v7.0.1/docs/rules/no-unsupported-features/node-builtins.md", }, fixable: null, schema: [ diff --git a/lib/rules/prefer-global/buffer.js b/lib/rules/prefer-global/buffer.js index 90e7547a..9a37992c 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/v7.0.0/docs/rules/prefer-global/buffer.md", + "https://github.com/mysticatea/eslint-plugin-node/blob/v7.0.1/docs/rules/prefer-global/buffer.md", }, fixable: null, schema: [{ enum: ["always", "never"] }], diff --git a/lib/rules/prefer-global/console.js b/lib/rules/prefer-global/console.js index 597ef8af..085b5d86 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/v7.0.0/docs/rules/prefer-global/console.md", + "https://github.com/mysticatea/eslint-plugin-node/blob/v7.0.1/docs/rules/prefer-global/console.md", }, fixable: null, schema: [{ enum: ["always", "never"] }], diff --git a/lib/rules/prefer-global/process.js b/lib/rules/prefer-global/process.js index 0a7862b0..9abb182a 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/v7.0.0/docs/rules/prefer-global/process.md", + "https://github.com/mysticatea/eslint-plugin-node/blob/v7.0.1/docs/rules/prefer-global/process.md", }, fixable: null, schema: [{ enum: ["always", "never"] }], diff --git a/lib/rules/prefer-global/url-search-params.js b/lib/rules/prefer-global/url-search-params.js index 3760ce03..abe7d5e0 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/v7.0.0/docs/rules/prefer-global/url-search-params.md", + "https://github.com/mysticatea/eslint-plugin-node/blob/v7.0.1/docs/rules/prefer-global/url-search-params.md", }, fixable: null, schema: [{ enum: ["always", "never"] }], diff --git a/lib/rules/prefer-global/url.js b/lib/rules/prefer-global/url.js index feae3e41..f67f4455 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/v7.0.0/docs/rules/prefer-global/url.md", + "https://github.com/mysticatea/eslint-plugin-node/blob/v7.0.1/docs/rules/prefer-global/url.md", }, fixable: null, schema: [{ enum: ["always", "never"] }], diff --git a/lib/rules/process-exit-as-throw.js b/lib/rules/process-exit-as-throw.js index f1e9086f..b74ac495 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/v7.0.0/docs/rules/process-exit-as-throw.md", + "https://github.com/mysticatea/eslint-plugin-node/blob/v7.0.1/docs/rules/process-exit-as-throw.md", }, fixable: null, schema: [], diff --git a/lib/rules/shebang.js b/lib/rules/shebang.js index 8b61fca2..9b269047 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/v7.0.0/docs/rules/shebang.md", + "https://github.com/mysticatea/eslint-plugin-node/blob/v7.0.1/docs/rules/shebang.md", }, fixable: "code", schema: [ diff --git a/package.json b/package.json index 42b8d239..3c374999 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "eslint-plugin-node", - "version": "7.0.0", + "version": "7.0.1", "description": "Additional ESLint's rules for Node.js", "engines": { "node": ">=6"