UNPKG

@atlaskit/eslint-plugin-design-system

Version:

The essential plugin for use with the Atlassian Design System.

13 lines (12 loc) 376 B
export type Domains = ('color' | 'spacing' | 'shape')[]; export type RuleConfig = { domains: Domains; applyImport?: boolean; shouldEnforceFallbacks: boolean; /** * List of exceptions that can be configured for the rule to always ignore. */ exceptions?: string[]; failSilently?: boolean; }; export type ProcessedCSSLines = [string, string][];