From fa5fb2f1409b96201fec00dafd6b8ac3a250cc98 Mon Sep 17 00:00:00 2001 From: Toru Nagashima Date: Tue, 26 Jun 2018 20:28:52 +0900 Subject: [PATCH] 5.0.1 --- lib/rules/arrow-parens.js | 2 +- lib/rules/block-scoped-var.js | 2 +- lib/rules/no-instanceof-array.js | 2 +- lib/rules/no-instanceof-wrapper.js | 2 +- lib/rules/no-literal-call.js | 2 +- lib/rules/no-this-in-static.js | 2 +- lib/rules/no-use-ignored-vars.js | 2 +- lib/rules/no-useless-rest-spread.js | 2 +- lib/rules/prefer-for-of.js | 2 +- package.json | 2 +- 10 files changed, 10 insertions(+), 10 deletions(-) diff --git a/lib/rules/arrow-parens.js b/lib/rules/arrow-parens.js index 95cbd97..b59a242 100644 --- a/lib/rules/arrow-parens.js +++ b/lib/rules/arrow-parens.js @@ -31,7 +31,7 @@ module.exports = { category: "Stylistic Issues", recommended: false, url: - "https://github.com/mysticatea/eslint-plugin/blob/v5.0.0/docs/rules/arrow-parens.md", + "https://github.com/mysticatea/eslint-plugin/blob/v5.0.1/docs/rules/arrow-parens.md", }, fixable: "code", schema: [], diff --git a/lib/rules/block-scoped-var.js b/lib/rules/block-scoped-var.js index adae41d..8bebb74 100644 --- a/lib/rules/block-scoped-var.js +++ b/lib/rules/block-scoped-var.js @@ -197,7 +197,7 @@ module.exports = { category: "Possible Errors", recommended: false, url: - "https://github.com/mysticatea/eslint-plugin/blob/v5.0.0/docs/rules/block-scoped-var.md", + "https://github.com/mysticatea/eslint-plugin/blob/v5.0.1/docs/rules/block-scoped-var.md", }, fixable: null, schema: [], diff --git a/lib/rules/no-instanceof-array.js b/lib/rules/no-instanceof-array.js index e45fcc2..92d7acf 100644 --- a/lib/rules/no-instanceof-array.js +++ b/lib/rules/no-instanceof-array.js @@ -15,7 +15,7 @@ module.exports = { description: "disallow 'instanceof' for Array", category: "Best Practices", url: - "https://github.com/mysticatea/eslint-plugin/blob/v5.0.0/docs/rules/no-instanceof-array.md", + "https://github.com/mysticatea/eslint-plugin/blob/v5.0.1/docs/rules/no-instanceof-array.md", }, fixable: "code", schema: [], diff --git a/lib/rules/no-instanceof-wrapper.js b/lib/rules/no-instanceof-wrapper.js index 6883a3d..83c8880 100644 --- a/lib/rules/no-instanceof-wrapper.js +++ b/lib/rules/no-instanceof-wrapper.js @@ -15,7 +15,7 @@ module.exports = { description: "disallow 'instanceof' for wrapper objects", category: "Best Practices", url: - "https://github.com/mysticatea/eslint-plugin/blob/v5.0.0/docs/rules/no-instanceof-wrapper.md", + "https://github.com/mysticatea/eslint-plugin/blob/v5.0.1/docs/rules/no-instanceof-wrapper.md", }, fixable: "code", schema: [], diff --git a/lib/rules/no-literal-call.js b/lib/rules/no-literal-call.js index afcca40..4b34545 100644 --- a/lib/rules/no-literal-call.js +++ b/lib/rules/no-literal-call.js @@ -22,7 +22,7 @@ module.exports = { category: "Possible Errors", recommended: false, url: - "https://github.com/mysticatea/eslint-plugin/blob/v5.0.0/docs/rules/no-literal-call.md", + "https://github.com/mysticatea/eslint-plugin/blob/v5.0.1/docs/rules/no-literal-call.md", }, fixable: null, schema: [], diff --git a/lib/rules/no-this-in-static.js b/lib/rules/no-this-in-static.js index 54609aa..0c5bb1a 100644 --- a/lib/rules/no-this-in-static.js +++ b/lib/rules/no-this-in-static.js @@ -15,7 +15,7 @@ module.exports = { description: "Disallow `this`/`super` in static methods", category: "Best Practices", url: - "https://github.com/mysticatea/eslint-plugin/blob/v5.0.0/docs/rules/no-this-in-static.md", + "https://github.com/mysticatea/eslint-plugin/blob/v5.0.1/docs/rules/no-this-in-static.md", }, fixable: null, schema: [], diff --git a/lib/rules/no-use-ignored-vars.js b/lib/rules/no-use-ignored-vars.js index c2d9173..95cad90 100644 --- a/lib/rules/no-use-ignored-vars.js +++ b/lib/rules/no-use-ignored-vars.js @@ -21,7 +21,7 @@ module.exports = { category: "Stylistic Issues", recommended: false, url: - "https://github.com/mysticatea/eslint-plugin/blob/v5.0.0/docs/rules/no-use-ignored-vars.md", + "https://github.com/mysticatea/eslint-plugin/blob/v5.0.1/docs/rules/no-use-ignored-vars.md", }, fixable: null, schema: [{ type: "string" }], diff --git a/lib/rules/no-useless-rest-spread.js b/lib/rules/no-useless-rest-spread.js index 17f056e..f422743 100644 --- a/lib/rules/no-useless-rest-spread.js +++ b/lib/rules/no-useless-rest-spread.js @@ -98,7 +98,7 @@ module.exports = { category: "Best Practices", recommended: false, url: - "https://github.com/mysticatea/eslint-plugin/blob/v5.0.0/docs/rules/no-useless-rest-spread.md", + "https://github.com/mysticatea/eslint-plugin/blob/v5.0.1/docs/rules/no-useless-rest-spread.md", }, fixable: "code", schema: [], diff --git a/lib/rules/prefer-for-of.js b/lib/rules/prefer-for-of.js index 0e81ab9..599a669 100644 --- a/lib/rules/prefer-for-of.js +++ b/lib/rules/prefer-for-of.js @@ -498,7 +498,7 @@ module.exports = { category: "Best Practices", recommended: false, url: - "https://github.com/mysticatea/eslint-plugin/blob/v5.0.0/docs/rules/prefer-for-of.md", + "https://github.com/mysticatea/eslint-plugin/blob/v5.0.1/docs/rules/prefer-for-of.md", }, fixable: "code", schema: [], diff --git a/package.json b/package.json index b22db04..8dc4204 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@mysticatea/eslint-plugin", - "version": "5.0.0", + "version": "5.0.1", "description": "Additional ESLint rules.", "engines": { "node": ">=6.5.0"