UNPKG

@atlaskit/eslint-plugin-design-system

Version:

The essential plugin for use with the Atlassian Design System.

10 lines 273 B
import { isNodeOfType } from 'eslint-codemod-utils'; export const isDecendantOfStyleJsxAttribute = node => { if (isNodeOfType(node, 'JSXAttribute')) { return true; } if (node.parent) { return isDecendantOfStyleJsxAttribute(node.parent); } return false; };