UNPKG

@atlaskit/eslint-plugin-design-system

Version:

The essential plugin for use with the Atlassian Design System.

7 lines 220 B
import { isNodeOfType } from 'eslint-codemod-utils'; export function isValidPropertyNode(node) { if (!isNodeOfType(node.key, 'Identifier') && !isNodeOfType(node.key, 'Literal')) { return false; } return true; }