You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
51 lines
1.3 KiB
51 lines
1.3 KiB
/**
|
|
* @author Yosuke Ota
|
|
* issue https://github.com/vuejs/eslint-plugin-vue/issues/460
|
|
*/
|
|
'use strict'
|
|
|
|
const utils = require('../utils')
|
|
|
|
module.exports = {
|
|
meta: {
|
|
type: 'layout',
|
|
docs: {
|
|
description: 'disallow spaces around equal signs in attribute',
|
|
categories: ['vue3-strongly-recommended', 'vue2-strongly-recommended'],
|
|
url: 'https://eslint.vuejs.org/rules/no-spaces-around-equal-signs-in-attribute.html'
|
|
},
|
|
fixable: 'whitespace',
|
|
schema: [],
|
|
messages: {
|
|
unexpectedSpaces: 'Unexpected spaces found around equal signs.'
|
|
}
|
|
},
|
|
/** @param {RuleContext} context */
|
|
create(context) {
|
|
const sourceCode = context.getSourceCode()
|
|
return utils.defineTemplateBodyVisitor(context, {
|
|
VAttribute(node) {
|
|
if (!node.value) {
|
|
return
|
|
}
|
|
/** @type {Range} */
|
|
const range = [node.key.range[1], node.value.range[0]]
|
|
const eqText = sourceCode.text.slice(range[0], range[1])
|
|
const expect = eqText.trim()
|
|
|
|
if (eqText !== expect) {
|
|
context.report({
|
|
node: node.key,
|
|
loc: {
|
|
start: node.key.loc.end,
|
|
end: node.value.loc.start
|
|
},
|
|
messageId: 'unexpectedSpaces',
|
|
fix: (fixer) => fixer.replaceTextRange(range, expect)
|
|
})
|
|
}
|
|
}
|
|
})
|
|
}
|
|
}
|