From 6604ccd48551516d1e697af827ebf92a6579354e Mon Sep 17 00:00:00 2001 From: Toru Nagashima Date: Thu, 31 Jan 2019 18:35:23 +0900 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=96=209.0.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- 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 b5ad968..33e0d93 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/v8.0.1/docs/rules/arrow-parens.md", + "https://github.com/mysticatea/eslint-plugin/blob/v9.0.0/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 17f7a94..9429880 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/v8.0.1/docs/rules/block-scoped-var.md", + "https://github.com/mysticatea/eslint-plugin/blob/v9.0.0/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 333c844..b22692d 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/v8.0.1/docs/rules/no-instanceof-array.md", + "https://github.com/mysticatea/eslint-plugin/blob/v9.0.0/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 9026afd..3788e5e 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/v8.0.1/docs/rules/no-instanceof-wrapper.md", + "https://github.com/mysticatea/eslint-plugin/blob/v9.0.0/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 2a8b237..5c4b668 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/v8.0.1/docs/rules/no-literal-call.md", + "https://github.com/mysticatea/eslint-plugin/blob/v9.0.0/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 a41e940..7357fc8 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/v8.0.1/docs/rules/no-this-in-static.md", + "https://github.com/mysticatea/eslint-plugin/blob/v9.0.0/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 ebf5a68..059a522 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/v8.0.1/docs/rules/no-use-ignored-vars.md", + "https://github.com/mysticatea/eslint-plugin/blob/v9.0.0/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 6a87069..96c94ae 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/v8.0.1/docs/rules/no-useless-rest-spread.md", + "https://github.com/mysticatea/eslint-plugin/blob/v9.0.0/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 f9f242e..c593ff7 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/v8.0.1/docs/rules/prefer-for-of.md", + "https://github.com/mysticatea/eslint-plugin/blob/v9.0.0/docs/rules/prefer-for-of.md", }, fixable: "code", schema: [], diff --git a/package.json b/package.json index 434d489..35e194b 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@mysticatea/eslint-plugin", - "version": "8.0.1", + "version": "9.0.0", "description": "Additional ESLint rules.", "engines": { "node": ">=6.5.0"