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.
78 lines
1.7 KiB
78 lines
1.7 KiB
// @ts-nocheck |
|
|
|
'use strict'; |
|
|
|
const hasBlock = require('../../utils/hasBlock'); |
|
const isStandardSyntaxAtRule = require('../../utils/isStandardSyntaxAtRule'); |
|
const nextNonCommentNode = require('../../utils/nextNonCommentNode'); |
|
const rawNodeString = require('../../utils/rawNodeString'); |
|
const report = require('../../utils/report'); |
|
const ruleMessages = require('../../utils/ruleMessages'); |
|
const validateOptions = require('../../utils/validateOptions'); |
|
const whitespaceChecker = require('../../utils/whitespaceChecker'); |
|
|
|
const ruleName = 'at-rule-semicolon-newline-after'; |
|
|
|
const messages = ruleMessages(ruleName, { |
|
expectedAfter: () => 'Expected newline after ";"', |
|
}); |
|
|
|
function rule(actual, secondary, context) { |
|
const checker = whitespaceChecker('newline', actual, messages); |
|
|
|
return (root, result) => { |
|
const validOptions = validateOptions(result, ruleName, { |
|
actual, |
|
possible: ['always'], |
|
}); |
|
|
|
if (!validOptions) { |
|
return; |
|
} |
|
|
|
root.walkAtRules((atRule) => { |
|
const nextNode = atRule.next(); |
|
|
|
if (!nextNode) { |
|
return; |
|
} |
|
|
|
if (hasBlock(atRule)) { |
|
return; |
|
} |
|
|
|
if (!isStandardSyntaxAtRule(atRule)) { |
|
return; |
|
} |
|
|
|
// Allow an end-of-line comment |
|
const nodeToCheck = nextNonCommentNode(nextNode); |
|
|
|
if (!nodeToCheck) { |
|
return; |
|
} |
|
|
|
checker.afterOneOnly({ |
|
source: rawNodeString(nodeToCheck), |
|
index: -1, |
|
err: (msg) => { |
|
if (context.fix) { |
|
nodeToCheck.raws.before = context.newline + nodeToCheck.raws.before; |
|
} else { |
|
report({ |
|
message: msg, |
|
node: atRule, |
|
index: atRule.toString().length + 1, |
|
result, |
|
ruleName, |
|
}); |
|
} |
|
}, |
|
}); |
|
}); |
|
}; |
|
} |
|
|
|
rule.ruleName = ruleName; |
|
rule.messages = messages; |
|
module.exports = rule;
|
|
|