12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- // @ts-nocheck
-
- 'use strict';
-
- const declarationBangSpaceChecker = require('../declarationBangSpaceChecker');
- const declarationValueIndex = require('../../utils/declarationValueIndex');
- const getDeclarationValue = require('../../utils/getDeclarationValue');
- const ruleMessages = require('../../utils/ruleMessages');
- const setDeclarationValue = require('../../utils/setDeclarationValue');
- const validateOptions = require('../../utils/validateOptions');
- const whitespaceChecker = require('../../utils/whitespaceChecker');
-
- const ruleName = 'declaration-bang-space-after';
-
- const messages = ruleMessages(ruleName, {
- expectedAfter: () => 'Expected single space after "!"',
- rejectedAfter: () => 'Unexpected whitespace after "!"',
- });
-
- function rule(expectation, options, context) {
- const checker = whitespaceChecker('space', expectation, messages);
-
- return (root, result) => {
- const validOptions = validateOptions(result, ruleName, {
- actual: expectation,
- possible: ['always', 'never'],
- });
-
- if (!validOptions) {
- return;
- }
-
- declarationBangSpaceChecker({
- root,
- result,
- locationChecker: checker.after,
- checkedRuleName: ruleName,
- fix: context.fix
- ? (decl, index) => {
- let bangIndex = index - declarationValueIndex(decl);
- const declValue = getDeclarationValue(decl);
- let target;
- let setFixed;
-
- if (bangIndex < declValue.length) {
- target = declValue;
- setFixed = (value) => {
- setDeclarationValue(decl, value);
- };
- } else if (decl.important) {
- target = decl.raws.important || ' !important';
- bangIndex -= declValue.length;
- setFixed = (value) => {
- decl.raws.important = value;
- };
- } else {
- return false; // not standard
- }
-
- const targetBefore = target.slice(0, bangIndex + 1);
- const targetAfter = target.slice(bangIndex + 1);
-
- if (expectation === 'always') {
- setFixed(targetBefore + targetAfter.replace(/^\s*/, ' '));
-
- return true;
- }
-
- if (expectation === 'never') {
- setFixed(targetBefore + targetAfter.replace(/^\s*/, ''));
-
- return true;
- }
- }
- : null,
- });
- };
- }
-
- rule.ruleName = ruleName;
- rule.messages = messages;
- module.exports = rule;
|