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.
52 lines
1.0 KiB
52 lines
1.0 KiB
// @ts-nocheck |
|
|
|
'use strict'; |
|
|
|
const report = require('../../utils/report'); |
|
const ruleMessages = require('../../utils/ruleMessages'); |
|
const validateOptions = require('../../utils/validateOptions'); |
|
|
|
const ruleName = 'no-missing-end-of-source-newline'; |
|
|
|
const messages = ruleMessages(ruleName, { |
|
rejected: 'Unexpected missing end-of-source newline', |
|
}); |
|
|
|
function rule(primary, _, context) { |
|
return (root, result) => { |
|
const validOptions = validateOptions(result, ruleName, { primary }); |
|
|
|
if (!validOptions) { |
|
return; |
|
} |
|
|
|
if (root.source.inline || root.source.lang === 'object-literal') { |
|
return; |
|
} |
|
|
|
const rootString = context.fix ? root.toString() : root.source.input.css; |
|
|
|
if (!rootString.trim() || rootString.endsWith('\n')) { |
|
return; |
|
} |
|
|
|
// Fix |
|
if (context.fix) { |
|
root.raws.after = context.newline; |
|
|
|
return; |
|
} |
|
|
|
report({ |
|
message: messages.rejected, |
|
node: root, |
|
index: rootString.length - 1, |
|
result, |
|
ruleName, |
|
}); |
|
}; |
|
} |
|
|
|
rule.ruleName = ruleName; |
|
rule.messages = messages; |
|
module.exports = rule;
|
|
|