From 959298f7902302c76692367af0d483de52f869db Mon Sep 17 00:00:00 2001 From: Yosuke Ota Date: Thu, 26 Dec 2019 11:20:02 +0900 Subject: [PATCH] Fixed broken links. (#1010) --- lib/rules/no-multi-spaces.js | 2 +- lib/utils/index.js | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/rules/no-multi-spaces.js b/lib/rules/no-multi-spaces.js index 60b838ef9..6ff8c15b9 100644 --- a/lib/rules/no-multi-spaces.js +++ b/lib/rules/no-multi-spaces.js @@ -46,7 +46,7 @@ module.exports = { if (context.parserServices.getTemplateBodyTokenStore == null) { context.report({ loc: { line: 1, column: 0 }, - message: 'Use the latest vue-eslint-parser. See also https://vuejs.github.io/eslint-plugin-vue/user-guide/#what-is-the-use-the-latest-vue-eslint-parser-error.' + message: 'Use the latest vue-eslint-parser. See also https://eslint.vuejs.org/user-guide/#what-is-the-use-the-latest-vue-eslint-parser-error.' }) return } diff --git a/lib/utils/index.js b/lib/utils/index.js index 5e32fa9bf..6dfb4460d 100644 --- a/lib/utils/index.js +++ b/lib/utils/index.js @@ -55,7 +55,7 @@ module.exports = { if (context.parserServices.defineTemplateBodyVisitor == null) { context.report({ loc: { line: 1, column: 0 }, - message: 'Use the latest vue-eslint-parser. See also https://vuejs.github.io/eslint-plugin-vue/user-guide/#what-is-the-use-the-latest-vue-eslint-parser-error' + message: 'Use the latest vue-eslint-parser. See also https://eslint.vuejs.org/user-guide/#what-is-the-use-the-latest-vue-eslint-parser-error' }) return {} } @@ -115,7 +115,7 @@ module.exports = { meta: Object.assign({}, coreRule.meta, { docs: Object.assign({}, coreRule.meta.docs, { category, - url: `https://vuejs.github.io/eslint-plugin-vue/rules/${path.basename(coreRule.meta.docs.url || '')}.html` + url: `https://eslint.vuejs.org/rules/${path.basename(coreRule.meta.docs.url || '')}.html` }) }) }