UNPKG

@atlaskit/eslint-plugin-design-system

Version:

The essential plugin for use with the Atlassian Design System.

10 lines (9 loc) 451 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.isFontSize = void 0; var _eslintCodemodUtils = require("eslint-codemod-utils"); var isFontSize = exports.isFontSize = function isFontSize(node) { return (0, _eslintCodemodUtils.isNodeOfType)(node, 'CallExpression') && (0, _eslintCodemodUtils.isNodeOfType)(node.callee, 'Identifier') && (node.callee.name === 'fontSize' || node.callee.name === 'getFontSize'); };