@atlaskit/eslint-plugin-design-system
Version:
The essential plugin for use with the Atlassian Design System.
11 lines • 382 B
JavaScript
import { isNodeOfType } from 'eslint-codemod-utils';
var _isDecendantOfStyleJsxAttribute = function isDecendantOfStyleJsxAttribute(node) {
if (isNodeOfType(node, 'JSXAttribute')) {
return true;
}
if (node.parent) {
return _isDecendantOfStyleJsxAttribute(node.parent);
}
return false;
};
export { _isDecendantOfStyleJsxAttribute as isDecendantOfStyleJsxAttribute };