12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Sniffs\Less;
- use PHP_CodeSniffer\Sniffs\Sniff;
- use PHP_CodeSniffer\Files\File;
- /**
- * Class PropertiesLineBreakSniff
- *
- * Start each property declaration in a new line
- *
- * @link https://devdocs.magento.com/guides/v2.0/coding-standards/code-standard-less.html#properties-line-break
- */
- class PropertiesLineBreakSniff implements Sniff
- {
- /**
- * A list of tokenizers this sniff supports.
- *
- * @var array
- */
- public $supportedTokenizers = [TokenizerSymbolsInterface::TOKENIZER_CSS];
- /**
- * @inheritdoc
- */
- public function register()
- {
- return [T_SEMICOLON];
- }
- /**
- * @inheritdoc
- */
- public function process(File $phpcsFile, $stackPtr)
- {
- $tokens = $phpcsFile->getTokens();
- $prevPtr = $phpcsFile->findPrevious(T_SEMICOLON, ($stackPtr - 1));
- if (false === $prevPtr) {
- return;
- }
- if ($tokens[$prevPtr]['line'] === $tokens[$stackPtr]['line']) {
- $error = 'Each property must be on a line by itself';
- $phpcsFile->addError($error, $stackPtr, 'SameLine');
- }
- }
- }
|