93 lines
2.5 KiB
JavaScript
93 lines
2.5 KiB
JavaScript
|
'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-before';
|
||
|
|
||
|
const messages = ruleMessages(ruleName, {
|
||
|
expectedBefore: () => 'Expected single space before "!"',
|
||
|
rejectedBefore: () => 'Unexpected whitespace before "!"',
|
||
|
});
|
||
|
|
||
|
const meta = {
|
||
|
url: 'https://stylelint.io/user-guide/rules/declaration-bang-space-before',
|
||
|
fixable: true,
|
||
|
deprecated: true,
|
||
|
};
|
||
|
|
||
|
/** @type {import('stylelint').Rule} */
|
||
|
const rule = (primary, _secondaryOptions, context) => {
|
||
|
const checker = whitespaceChecker('space', primary, messages);
|
||
|
|
||
|
return (root, result) => {
|
||
|
const validOptions = validateOptions(result, ruleName, {
|
||
|
actual: primary,
|
||
|
possible: ['always', 'never'],
|
||
|
});
|
||
|
|
||
|
if (!validOptions) {
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
declarationBangSpaceChecker({
|
||
|
root,
|
||
|
result,
|
||
|
locationChecker: checker.before,
|
||
|
checkedRuleName: ruleName,
|
||
|
fix: context.fix
|
||
|
? (decl, index) => {
|
||
|
let bangIndex = index - declarationValueIndex(decl);
|
||
|
const value = getDeclarationValue(decl);
|
||
|
let target;
|
||
|
/** @type {(val: string) => void} */
|
||
|
let setFixed;
|
||
|
|
||
|
if (bangIndex < value.length) {
|
||
|
target = value;
|
||
|
setFixed = (val) => {
|
||
|
setDeclarationValue(decl, val);
|
||
|
};
|
||
|
} else if (decl.important) {
|
||
|
target = decl.raws.important || ' !important';
|
||
|
bangIndex -= value.length;
|
||
|
setFixed = (val) => {
|
||
|
decl.raws.important = val;
|
||
|
};
|
||
|
} else {
|
||
|
return false; // not standard
|
||
|
}
|
||
|
|
||
|
const targetBefore = target.slice(0, bangIndex);
|
||
|
const targetAfter = target.slice(bangIndex);
|
||
|
|
||
|
if (primary === 'always') {
|
||
|
// eslint-disable-next-line prefer-template
|
||
|
setFixed(targetBefore.replace(/\s*$/, '') + ' ' + targetAfter);
|
||
|
|
||
|
return true;
|
||
|
}
|
||
|
|
||
|
if (primary === 'never') {
|
||
|
setFixed(targetBefore.replace(/\s*$/, '') + targetAfter);
|
||
|
|
||
|
return true;
|
||
|
}
|
||
|
|
||
|
return false;
|
||
|
}
|
||
|
: null,
|
||
|
});
|
||
|
};
|
||
|
};
|
||
|
|
||
|
rule.ruleName = ruleName;
|
||
|
rule.messages = messages;
|
||
|
rule.meta = meta;
|
||
|
module.exports = rule;
|