el-beeswarm
Version:
<div style="display: flex; padding: 1rem; flex-direction: column; align-items: center; justify-content: center; height: 100vh; text-align: center; display: flex;
58 lines (48 loc) • 1.17 kB
JavaScript
// @ts-nocheck
;
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,
});
},
});
}
};