From 4d4f92d65388e9d1eac8a53cb4dc55b3fb45bf6b Mon Sep 17 00:00:00 2001 From: Toru Nagashima Date: Mon, 11 Nov 2019 12:28:07 +0900 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=96=2013.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 fbb6ef1..3736763 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/v12.0.0/docs/rules/arrow-parens.md", + "https://github.com/mysticatea/eslint-plugin/blob/v13.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 d133db8..b212809 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/v12.0.0/docs/rules/block-scoped-var.md", + "https://github.com/mysticatea/eslint-plugin/blob/v13.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 f6d691b..5cc1e54 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/v12.0.0/docs/rules/no-instanceof-array.md", + "https://github.com/mysticatea/eslint-plugin/blob/v13.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 35e8d66..c30ee6b 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/v12.0.0/docs/rules/no-instanceof-wrapper.md", + "https://github.com/mysticatea/eslint-plugin/blob/v13.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 537602a..22e6856 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/v12.0.0/docs/rules/no-literal-call.md", + "https://github.com/mysticatea/eslint-plugin/blob/v13.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 98fac6d..a6a342f 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/v12.0.0/docs/rules/no-this-in-static.md", + "https://github.com/mysticatea/eslint-plugin/blob/v13.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 387c074..5a4855b 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/v12.0.0/docs/rules/no-use-ignored-vars.md", + "https://github.com/mysticatea/eslint-plugin/blob/v13.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 ab2103f..ccca71b 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/v12.0.0/docs/rules/no-useless-rest-spread.md", + "https://github.com/mysticatea/eslint-plugin/blob/v13.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 97888ad..37ea4e6 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/v12.0.0/docs/rules/prefer-for-of.md", + "https://github.com/mysticatea/eslint-plugin/blob/v13.0.0/docs/rules/prefer-for-of.md", }, fixable: "code", schema: [], diff --git a/package.json b/package.json index f87ed57..65aad32 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@mysticatea/eslint-plugin", - "version": "12.0.0", + "version": "13.0.0", "description": "Additional ESLint rules.", "engines": { "node": ">=8.10.0"