1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
/**
* @author Yosuke Ota
* issue https://github.com/vuejs/eslint-plugin-vue/issues/460
*/
'use strict'
// ------------------------------------------------------------------------------
// Requirements
// ------------------------------------------------------------------------------
const utils = require('../utils')
// ------------------------------------------------------------------------------
// Rule Definition
// ------------------------------------------------------------------------------
module.exports = {
meta: {
type: 'layout',
docs: {
description: 'disallow spaces around equal signs in attribute',
category: 'strongly-recommended',
url: 'https://eslint.vuejs.org/rules/no-spaces-around-equal-signs-in-attribute.html'
},
fixable: 'whitespace',
schema: []
},
create (context) {
const sourceCode = context.getSourceCode()
return utils.defineTemplateBodyVisitor(context, {
'VAttribute' (node) {
if (!node.value) {
return
}
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
},
message: 'Unexpected spaces found around equal signs.',
data: {},
fix: fixer => fixer.replaceTextRange(range, expect)
})
}
}
})
}
}