-
-
Notifications
You must be signed in to change notification settings - Fork 681
/
Copy pathno-multi-spaces.js
107 lines (101 loc) · 2.99 KB
/
no-multi-spaces.js
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
/**
* @fileoverview This rule warns about the usage of extra whitespaces between attributes
* @author Armano
*/
'use strict'
const path = require('path')
/**
* @param {RuleContext} context
* @param {Token} node
*/
const isProperty = (context, node) => {
const sourceCode = context.getSourceCode()
return node.type === 'Punctuator' && sourceCode.getText(node) === ':'
}
module.exports = {
meta: {
type: 'layout',
docs: {
description: 'disallow multiple spaces',
categories: ['vue3-strongly-recommended', 'vue2-strongly-recommended'],
url: 'https://eslint.vuejs.org/rules/no-multi-spaces.html'
},
fixable: 'whitespace',
schema: [
{
type: 'object',
properties: {
ignoreProperties: {
type: 'boolean'
}
},
additionalProperties: false
}
],
messages: {
multipleSpaces: "Multiple spaces found before '{{displayValue}}'.",
useLatestParser:
'Use the latest vue-eslint-parser. See also https://eslint.vuejs.org/user-guide/#what-is-the-use-the-latest-vue-eslint-parser-error.'
}
},
/**
* @param {RuleContext} context - The rule context.
* @returns {RuleListener} AST event handlers.
*/
create(context) {
const options = context.options[0] || {}
const ignoreProperties = options.ignoreProperties === true
return {
Program(node) {
const sourceCode = context.getSourceCode()
if (sourceCode.parserServices.getTemplateBodyTokenStore == null) {
const filename = context.getFilename()
if (path.extname(filename) === '.vue') {
context.report({
loc: { line: 1, column: 0 },
messageId: 'useLatestParser'
})
}
return
}
if (!node.templateBody) {
return
}
const tokenStore = sourceCode.parserServices.getTemplateBodyTokenStore()
const tokens = tokenStore.getTokens(node.templateBody, {
includeComments: true
})
let prevToken = /** @type {Token} */ (tokens.shift())
for (const token of tokens) {
const spaces = token.range[0] - prevToken.range[1]
const shouldIgnore =
ignoreProperties &&
(isProperty(context, token) || isProperty(context, prevToken))
if (
spaces > 1 &&
token.loc.start.line === prevToken.loc.start.line &&
!shouldIgnore
) {
context.report({
node: token,
loc: {
start: prevToken.loc.end,
end: token.loc.start
},
messageId: 'multipleSpaces',
fix: (fixer) =>
fixer.replaceTextRange(
[prevToken.range[1], token.range[0]],
' '
),
data: {
displayValue: sourceCode.getText(token)
}
})
}
prevToken = token
}
}
}
}
}