You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
82 lines
2.2 KiB
82 lines
2.2 KiB
// @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;
|
|
|