-
Notifications
You must be signed in to change notification settings - Fork 157
/
Copy pathColonSpacingSniff.php
117 lines (104 loc) · 3.42 KB
/
ColonSpacingSniff.php
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
108
109
110
111
112
113
114
115
116
117
<?php
/**
* Copyright 2021 Adobe
* All Rights Reserved.
*/
declare(strict_types=1);
namespace Magento2\Sniffs\Less;
use PHP_CodeSniffer\Sniffs\Sniff;
use PHP_CodeSniffer\Files\File;
use PHP_CodeSniffer\Util\Tokens;
/**
* Class ColonSpacingSniff
*
* Ensure that colon spacing is right
*
* @link https://devdocs.magento.com/guides/v2.4/coding-standards/code-standard-less.html#properties-colon-indents
*/
class ColonSpacingSniff implements Sniff
{
/**
* A list of tokenizers this sniff supports.
*
* @var array
*/
public $supportedTokenizers = [TokenizerSymbolsInterface::TOKENIZER_CSS];
/**
* @inheritdoc
*/
public function register()
{
return [T_COLON];
}
/**
* @inheritdoc
*/
public function process(File $phpcsFile, $stackPtr)
{
$tokens = $phpcsFile->getTokens();
if ($this->needValidateSpaces($phpcsFile, $stackPtr, $tokens)) {
$this->validateSpaces($phpcsFile, $stackPtr, $tokens);
}
}
/**
* Check is it need to check spaces
*
* @param File $phpcsFile
* @param int $stackPtr
* @param array $tokens
*
* @return bool
*/
private function needValidateSpaces(File $phpcsFile, $stackPtr, $tokens)
{
if (TokenizerSymbolsInterface::BITWISE_AND === $tokens[$stackPtr - 1]['content']) {
return false;
}
// Avoid false positives when parsing pseudo-classes
$next = $phpcsFile->findNext([T_SEMICOLON, T_OPEN_CURLY_BRACKET], $stackPtr + 1);
if ($tokens[$next]['code'] === T_OPEN_CURLY_BRACKET) {
return false;
}
$prev = $phpcsFile->findPrevious(Tokens::$emptyTokens, ($stackPtr - 1), null, true);
if ($tokens[$prev]['content'] === 'progid') {
// Special case for IE filters.
return false;
}
return true;
}
/**
* Validate Colon Spacing according to requirements:
* - No spaces before colon
* - Exactly 1 space after colon
* - No property definition scattered among several lines
*
* @param File $phpcsFile
* @param int $stackPtr
* @param array $tokens
*
* @return void
*/
private function validateSpaces(File $phpcsFile, $stackPtr, array $tokens)
{
if (T_WHITESPACE === $tokens[($stackPtr - 1)]['code']) {
$phpcsFile->addError('There must be no space before a colon in a style definition', $stackPtr, 'Before');
}
$nextSemicolon = $phpcsFile->findNext(T_SEMICOLON, $stackPtr);
if (false !== $nextSemicolon && ($tokens[$nextSemicolon]['line'] !== $tokens[$stackPtr]['line'])) {
$error = 'Expected 1 space after colon in style definition; newline found';
$phpcsFile->addError($error, $stackPtr, 'AfterNewline');
}
if (T_WHITESPACE !== $tokens[($stackPtr + 1)]['code']) {
$phpcsFile->addError('Expected 1 space after colon in style definition; 0 found', $stackPtr, 'NoneAfter');
} else {
$content = $tokens[($stackPtr + 1)]['content'];
if (false !== strpos($content, ' ')) {
$length = strlen($content);
if ($length !== 1) {
$error = sprintf('Expected 1 space after colon in style definition; %s found', $length);
$phpcsFile->addError($error, $stackPtr, 'After');
}
}
}
}
}