We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 50596ab commit b476621Copy full SHA for b476621
lib/utils/index.js
@@ -13,6 +13,7 @@ const HTML_ELEMENT_NAMES = new Set(require('./html-elements.json'))
13
const SVG_ELEMENT_NAMES = new Set(require('./svg-elements.json'))
14
const VOID_ELEMENT_NAMES = new Set(require('./void-elements.json'))
15
const assert = require('assert')
16
+const path = require('path')
17
const vueEslintParser = require('vue-eslint-parser')
18
19
/**
@@ -95,11 +96,12 @@ module.exports = {
95
96
return module.exports.defineTemplateBodyVisitor(context, handlers)
97
},
98
- meta: Object.assign(
99
- {},
100
- coreRule.meta,
101
- { docs: Object.assign({}, coreRule.meta.docs, { category }) }
102
- )
+ 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`
103
+ })
104
105
}
106
107
AltStyle によって変換されたページ (->オリジナル) / アドレス: モード: デフォルト 音声ブラウザ ルビ付き 配色反転 文字拡大 モバイル
0 commit comments