UNPKG

@atlaskit/eslint-plugin-design-system

Version:

The essential plugin for use with the Atlassian Design System.

4 lines 296 B
import { isNodeOfType } from 'eslint-codemod-utils'; export var isCodeFontFamily = function isCodeFontFamily(node) { return isNodeOfType(node, 'CallExpression') && isNodeOfType(node.callee, 'Identifier') && (node.callee.name === 'codeFontFamily' || node.callee.name === 'getCodeFontFamily'); };