minishouyin/node_modules/@ant-design/cssinjs/es/linters/hashedAnimationLinter.js

9 lines
352 B
JavaScript
Raw Normal View History

2025-11-12 11:35:57 +08:00
import { lintWarning } from "./utils";
var linter = function linter(key, value, info) {
if (key === 'animation') {
if (info.hashId && value !== 'none') {
lintWarning("You seem to be using hashed animation '".concat(value, "', in which case 'animationName' with Keyframe as value is recommended."), info);
}
}
};
export default linter;