UNPKG

@atlaskit/stylelint-design-system

Version:

Stylelint plugin for use with the Atlassian Design System.

10 lines (9 loc) 334 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.isTypographyRule = void 0; var typographyProperties = ['font-size', 'font-weight', 'font-family', 'line-height']; var isTypographyRule = exports.isTypographyRule = function isTypographyRule(prop) { return typographyProperties.includes(prop); };