securityos/node_modules/stylelint/lib/utils/configurationComment.js

74 lines
1.7 KiB
JavaScript
Raw Normal View History

2024-09-06 15:32:35 +00:00
'use strict';
const { assertString } = require('./validateTypes');
const DISABLE_COMMAND = '-disable';
const DISABLE_LINE_COMMAND = '-disable-line';
const DISABLE_NEXT_LINE_COMMAND = '-disable-next-line';
const ENABLE_COMMAND = '-enable';
const ALL_COMMANDS = new Set([
DISABLE_COMMAND,
DISABLE_LINE_COMMAND,
DISABLE_NEXT_LINE_COMMAND,
ENABLE_COMMAND,
]);
const DEFAULT_CONFIGURATION_COMMENT = 'stylelint';
/** @typedef {import('postcss').Comment} Comment */
/**
* Extract a command from a given comment.
*
* @param {Comment} comment
* @param {string} [configurationComment]
* @returns {string}
*/
function extractConfigurationComment(
comment,
configurationComment = DEFAULT_CONFIGURATION_COMMENT,
) {
const [command] = comment.text.split(/\s/, 1);
assertString(command);
return command.replace(configurationComment, '');
}
/**
* Tests if the given comment is a Stylelint command.
*
* @param {Comment} comment
* @param {string} [configurationComment]
* @returns {boolean}
*/
function isConfigurationComment(comment, configurationComment = DEFAULT_CONFIGURATION_COMMENT) {
const command = extractConfigurationComment(comment, configurationComment);
return command !== undefined && ALL_COMMANDS.has(command);
}
/**
* Get full stylelint command
*
* @param {string} command
* @param {string} [configurationComment]
* @returns {string}
*/
function getConfigurationComment(command, configurationComment = DEFAULT_CONFIGURATION_COMMENT) {
return `${configurationComment}${command}`;
}
module.exports = {
DEFAULT_CONFIGURATION_COMMENT,
DISABLE_COMMAND,
DISABLE_LINE_COMMAND,
DISABLE_NEXT_LINE_COMMAND,
ENABLE_COMMAND,
extractConfigurationComment,
getConfigurationComment,
isConfigurationComment,
};