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.
60 lines
1.8 KiB
60 lines
1.8 KiB
// @ts-nocheck |
|
|
|
'use strict'; |
|
|
|
const _ = require('lodash'); |
|
const getDeclarationValue = require('../../utils/getDeclarationValue'); |
|
const report = require('../../utils/report'); |
|
const ruleMessages = require('../../utils/ruleMessages'); |
|
const setDeclarationValue = require('../../utils/setDeclarationValue'); |
|
const validateOptions = require('../../utils/validateOptions'); |
|
|
|
const ruleName = 'value-list-max-empty-lines'; |
|
|
|
const messages = ruleMessages(ruleName, { |
|
expected: (max) => `Expected no more than ${max} empty ${max === 1 ? 'line' : 'lines'}`, |
|
}); |
|
|
|
function rule(max, options, context) { |
|
const maxAdjacentNewlines = max + 1; |
|
|
|
return (root, result) => { |
|
const validOptions = validateOptions(result, ruleName, { |
|
actual: max, |
|
possible: _.isNumber, |
|
}); |
|
|
|
if (!validOptions) { |
|
return; |
|
} |
|
|
|
const violatedCRLFNewLinesRegex = new RegExp(`(?:\r\n){${maxAdjacentNewlines + 1},}`); |
|
const violatedLFNewLinesRegex = new RegExp(`\n{${maxAdjacentNewlines + 1},}`); |
|
const allowedLFNewLinesString = context.fix ? '\n'.repeat(maxAdjacentNewlines) : ''; |
|
const allowedCRLFNewLinesString = context.fix ? '\r\n'.repeat(maxAdjacentNewlines) : ''; |
|
|
|
root.walkDecls((decl) => { |
|
const value = getDeclarationValue(decl); |
|
|
|
if (context.fix) { |
|
const newValueString = value |
|
.replace(new RegExp(violatedLFNewLinesRegex, 'gm'), allowedLFNewLinesString) |
|
.replace(new RegExp(violatedCRLFNewLinesRegex, 'gm'), allowedCRLFNewLinesString); |
|
|
|
setDeclarationValue(decl, newValueString); |
|
} else if (violatedLFNewLinesRegex.test(value) || violatedCRLFNewLinesRegex.test(value)) { |
|
report({ |
|
message: messages.expected(max), |
|
node: decl, |
|
index: 0, |
|
result, |
|
ruleName, |
|
}); |
|
} |
|
}); |
|
}; |
|
} |
|
|
|
rule.ruleName = ruleName; |
|
rule.messages = messages; |
|
module.exports = rule;
|
|
|