UNPKG

@antebudimir/eslint-plugin-vanilla-extract

Version:

ESLint plugin for enforcing best practices in vanilla-extract CSS styles, including CSS property ordering and additional linting rules.

10 lines (9 loc) 277 B
import { TSESTree } from '@typescript-eslint/utils'; export interface CSSPropertyInfo { name: string; node: TSESTree.Property; priority: number; positionInGroup: number; group?: string; } export type SortRemainingProperties = 'alphabetical' | 'concentric';