From 39b0da3375bb10c1459d6527db8193394d6b80de Mon Sep 17 00:00:00 2001 From: Toru Nagashima Date: Tue, 26 Jun 2018 18:37:41 +0900 Subject: [PATCH] 5.0.0 --- 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 3a42bfa..95cbd97 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-beta.15/docs/rules/arrow-parens.md", + "https://github.com/mysticatea/eslint-plugin/blob/v5.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 cfa2e23..adae41d 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-beta.15/docs/rules/block-scoped-var.md", + "https://github.com/mysticatea/eslint-plugin/blob/v5.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 96ba186..e45fcc2 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-beta.15/docs/rules/no-instanceof-array.md", + "https://github.com/mysticatea/eslint-plugin/blob/v5.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 62d6369..6883a3d 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-beta.15/docs/rules/no-instanceof-wrapper.md", + "https://github.com/mysticatea/eslint-plugin/blob/v5.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 724f8cb..afcca40 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-beta.15/docs/rules/no-literal-call.md", + "https://github.com/mysticatea/eslint-plugin/blob/v5.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 53dfa33..54609aa 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-beta.15/docs/rules/no-this-in-static.md", + "https://github.com/mysticatea/eslint-plugin/blob/v5.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 7cbfc02..c2d9173 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-beta.15/docs/rules/no-use-ignored-vars.md", + "https://github.com/mysticatea/eslint-plugin/blob/v5.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 c557888..17f056e 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-beta.15/docs/rules/no-useless-rest-spread.md", + "https://github.com/mysticatea/eslint-plugin/blob/v5.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 7ddf775..0e81ab9 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-beta.15/docs/rules/prefer-for-of.md", + "https://github.com/mysticatea/eslint-plugin/blob/v5.0.0/docs/rules/prefer-for-of.md", }, fixable: "code", schema: [], diff --git a/package.json b/package.json index d7e59c4..b22db04 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@mysticatea/eslint-plugin", - "version": "5.0.0-beta.15", + "version": "5.0.0", "description": "Additional ESLint rules.", "engines": { "node": ">=6.5.0"