thingsboard/ui/node_modules/stylelint/lib/rules/valueListCommaWhitespaceChecker.js

56 lines
1.1 KiB
JavaScript
Raw Normal View History

2020-05-19 11:43:42 +03:00
'use strict';
const isStandardSyntaxDeclaration = require('../utils/isStandardSyntaxDeclaration');
const isStandardSyntaxProperty = require('../utils/isStandardSyntaxProperty');
const report = require('../utils/report');
const styleSearch = require('style-search');
module.exports = function(opts) {
opts.root.walkDecls((decl) => {
if (!isStandardSyntaxDeclaration(decl) || !isStandardSyntaxProperty(decl.prop)) {
return;
}
const declString = decl.toString();
styleSearch(
{
source: declString,
target: ',',
functionArguments: 'skip',
},
(match) => {
const indexToCheckAfter = opts.determineIndex
? opts.determineIndex(declString, match)
: match.startIndex;
if (indexToCheckAfter === false) {
return;
}
checkComma(declString, indexToCheckAfter, decl);
},
);
});
function checkComma(source, index, node) {
opts.locationChecker({
source,
index,
err: (m) => {
if (opts.fix && opts.fix(node, index)) {
return;
}
report({
message: m,
node,
index,
result: opts.result,
ruleName: opts.checkedRuleName,
});
},
});
}
};