UNPKG

@antebudimir/eslint-plugin-vanilla-extract

Version:

Comprehensive ESLint plugin for vanilla-extract with CSS property ordering, style validation, and best practices enforcement. Supports alphabetical, concentric and custom CSS ordering, auto-fixing, and zero-runtime safety.

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';