Skip to content

Commit 959298f

Browse files
authored
Fixed broken links. (#1010)
1 parent 4476263 commit 959298f

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

lib/rules/no-multi-spaces.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ module.exports = {
4646
if (context.parserServices.getTemplateBodyTokenStore == null) {
4747
context.report({
4848
loc: { line: 1, column: 0 },
49-
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.'
49+
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.'
5050
})
5151
return
5252
}

lib/utils/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ module.exports = {
5555
if (context.parserServices.defineTemplateBodyVisitor == null) {
5656
context.report({
5757
loc: { line: 1, column: 0 },
58-
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'
58+
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'
5959
})
6060
return {}
6161
}
@@ -115,7 +115,7 @@ module.exports = {
115115
meta: Object.assign({}, coreRule.meta, {
116116
docs: Object.assign({}, coreRule.meta.docs, {
117117
category,
118-
url: `https://vuejs.github.io/eslint-plugin-vue/rules/${path.basename(coreRule.meta.docs.url || '')}.html`
118+
url: `https://eslint.vuejs.org/rules/${path.basename(coreRule.meta.docs.url || '')}.html`
119119
})
120120
})
121121
}

0 commit comments

Comments
 (0)