first commit
This commit is contained in:
75
node_modules/stylelint/lib/rules/no-unknown-animations/index.cjs
generated
vendored
Normal file
75
node_modules/stylelint/lib/rules/no-unknown-animations/index.cjs
generated
vendored
Normal file
@@ -0,0 +1,75 @@
|
||||
// NOTICE: This file is generated by Rollup. To modify it,
|
||||
// please instead edit the ESM counterpart and rebuild with Rollup (npm run build).
|
||||
'use strict';
|
||||
|
||||
const keywords = require('../../reference/keywords.cjs');
|
||||
const nodeFieldIndices = require('../../utils/nodeFieldIndices.cjs');
|
||||
const findAnimationName = require('../../utils/findAnimationName.cjs');
|
||||
const report = require('../../utils/report.cjs');
|
||||
const ruleMessages = require('../../utils/ruleMessages.cjs');
|
||||
const validateOptions = require('../../utils/validateOptions.cjs');
|
||||
|
||||
const ruleName = 'no-unknown-animations';
|
||||
|
||||
const messages = ruleMessages(ruleName, {
|
||||
rejected: (animationName) => `Unexpected unknown animation name "${animationName}"`,
|
||||
});
|
||||
|
||||
const meta = {
|
||||
url: 'https://stylelint.io/user-guide/rules/no-unknown-animations',
|
||||
};
|
||||
|
||||
/** @type {import('stylelint').CoreRules[ruleName]} */
|
||||
const rule = (primary) => {
|
||||
return (root, result) => {
|
||||
const validOptions = validateOptions(result, ruleName, { actual: primary });
|
||||
|
||||
if (!validOptions) {
|
||||
return;
|
||||
}
|
||||
|
||||
const declaredAnimations = new Set();
|
||||
|
||||
root.walkAtRules(/(-(o|moz|ms|webkit)-)?keyframes/i, (atRule) => {
|
||||
declaredAnimations.add(atRule.params);
|
||||
});
|
||||
|
||||
root.walkDecls((decl) => {
|
||||
if (decl.prop.toLowerCase() === 'animation' || decl.prop.toLowerCase() === 'animation-name') {
|
||||
const animationNames = findAnimationName(decl.value);
|
||||
|
||||
if (animationNames.length === 0) {
|
||||
return;
|
||||
}
|
||||
|
||||
for (const animationNameNode of animationNames) {
|
||||
if (keywords.animationNameKeywords.has(animationNameNode.value.toLowerCase())) {
|
||||
continue;
|
||||
}
|
||||
|
||||
if (declaredAnimations.has(animationNameNode.value)) {
|
||||
continue;
|
||||
}
|
||||
|
||||
const begin = nodeFieldIndices.declarationValueIndex(decl);
|
||||
|
||||
report({
|
||||
result,
|
||||
ruleName,
|
||||
message: messages.rejected,
|
||||
messageArgs: [animationNameNode.value],
|
||||
node: decl,
|
||||
index: begin + animationNameNode.sourceIndex,
|
||||
endIndex: begin + animationNameNode.sourceEndIndex,
|
||||
});
|
||||
}
|
||||
}
|
||||
});
|
||||
};
|
||||
};
|
||||
|
||||
rule.ruleName = ruleName;
|
||||
rule.messages = messages;
|
||||
rule.meta = meta;
|
||||
|
||||
module.exports = rule;
|
||||
70
node_modules/stylelint/lib/rules/no-unknown-animations/index.mjs
generated
vendored
Normal file
70
node_modules/stylelint/lib/rules/no-unknown-animations/index.mjs
generated
vendored
Normal file
@@ -0,0 +1,70 @@
|
||||
import { animationNameKeywords } from '../../reference/keywords.mjs';
|
||||
import { declarationValueIndex } from '../../utils/nodeFieldIndices.mjs';
|
||||
import findAnimationName from '../../utils/findAnimationName.mjs';
|
||||
import report from '../../utils/report.mjs';
|
||||
import ruleMessages from '../../utils/ruleMessages.mjs';
|
||||
import validateOptions from '../../utils/validateOptions.mjs';
|
||||
|
||||
const ruleName = 'no-unknown-animations';
|
||||
|
||||
const messages = ruleMessages(ruleName, {
|
||||
rejected: (animationName) => `Unexpected unknown animation name "${animationName}"`,
|
||||
});
|
||||
|
||||
const meta = {
|
||||
url: 'https://stylelint.io/user-guide/rules/no-unknown-animations',
|
||||
};
|
||||
|
||||
/** @type {import('stylelint').CoreRules[ruleName]} */
|
||||
const rule = (primary) => {
|
||||
return (root, result) => {
|
||||
const validOptions = validateOptions(result, ruleName, { actual: primary });
|
||||
|
||||
if (!validOptions) {
|
||||
return;
|
||||
}
|
||||
|
||||
const declaredAnimations = new Set();
|
||||
|
||||
root.walkAtRules(/(-(o|moz|ms|webkit)-)?keyframes/i, (atRule) => {
|
||||
declaredAnimations.add(atRule.params);
|
||||
});
|
||||
|
||||
root.walkDecls((decl) => {
|
||||
if (decl.prop.toLowerCase() === 'animation' || decl.prop.toLowerCase() === 'animation-name') {
|
||||
const animationNames = findAnimationName(decl.value);
|
||||
|
||||
if (animationNames.length === 0) {
|
||||
return;
|
||||
}
|
||||
|
||||
for (const animationNameNode of animationNames) {
|
||||
if (animationNameKeywords.has(animationNameNode.value.toLowerCase())) {
|
||||
continue;
|
||||
}
|
||||
|
||||
if (declaredAnimations.has(animationNameNode.value)) {
|
||||
continue;
|
||||
}
|
||||
|
||||
const begin = declarationValueIndex(decl);
|
||||
|
||||
report({
|
||||
result,
|
||||
ruleName,
|
||||
message: messages.rejected,
|
||||
messageArgs: [animationNameNode.value],
|
||||
node: decl,
|
||||
index: begin + animationNameNode.sourceIndex,
|
||||
endIndex: begin + animationNameNode.sourceEndIndex,
|
||||
});
|
||||
}
|
||||
}
|
||||
});
|
||||
};
|
||||
};
|
||||
|
||||
rule.ruleName = ruleName;
|
||||
rule.messages = messages;
|
||||
rule.meta = meta;
|
||||
export default rule;
|
||||
Reference in New Issue
Block a user