| import { isFunctionNode, parseListOfComponentValues, walk } from '@csstools/css-parser-algorithms'; |
| import functions from 'css-functions-list/index.json' with { type: 'json' }; |
| import { tokenize } from '@csstools/css-tokenizer'; |
| |
| import { isRegExp, isString } from '../../utils/validateTypes.mjs'; |
| import { declarationValueIndex } from '../../utils/nodeFieldIndices.mjs'; |
| import isCustomFunction from '../../utils/isCustomFunction.mjs'; |
| import isStandardSyntaxValue from '../../utils/isStandardSyntaxValue.mjs'; |
| import optionsMatches from '../../utils/optionsMatches.mjs'; |
| import report from '../../utils/report.mjs'; |
| import ruleMessages from '../../utils/ruleMessages.mjs'; |
| import validateOptions from '../../utils/validateOptions.mjs'; |
| |
| const ruleName = 'function-no-unknown'; |
| |
| const messages = ruleMessages(ruleName, { |
| rejected: (name) => `Unknown function "${name}"`, |
| }); |
| |
| const meta = { |
| url: 'https://stylelint.io/user-guide/rules/function-no-unknown', |
| }; |
| |
| /** @type {import('stylelint').CoreRules[ruleName]} */ |
| const rule = (primary, secondaryOptions) => { |
| return (root, result) => { |
| const validOptions = validateOptions( |
| result, |
| ruleName, |
| { actual: primary }, |
| { |
| actual: secondaryOptions, |
| possible: { |
| ignoreFunctions: [isString, isRegExp], |
| }, |
| optional: true, |
| }, |
| ); |
| |
| if (!validOptions) { |
| return; |
| } |
| |
| root.walkDecls((decl) => { |
| const { value } = decl; |
| |
| if (!value.includes('(')) return; |
| |
| if (!isStandardSyntaxValue(value)) return; |
| |
| walk(parseListOfComponentValues(tokenize({ css: value })), ({ node }) => { |
| if (!isFunctionNode(node)) return; |
| |
| const name = node.getName(); |
| |
| if (isCustomFunction(name)) return; |
| |
| if (optionsMatches(secondaryOptions, 'ignoreFunctions', name)) return; |
| |
| if (functions.includes(name.toLowerCase())) return; |
| |
| const declIndex = declarationValueIndex(decl); |
| const index = declIndex + node.name[2]; |
| const endIndex = declIndex + node.name[3]; |
| |
| report({ |
| message: messages.rejected, |
| messageArgs: [name], |
| node: decl, |
| index, |
| endIndex, |
| result, |
| ruleName, |
| }); |
| }); |
| }); |
| }; |
| }; |
| |
| rule.ruleName = ruleName; |
| rule.messages = messages; |
| rule.meta = meta; |
| export default rule; |