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.

9 lines (8 loc) 444 B
import type { TSESTree } from '@typescript-eslint/utils'; /** * Compares two CSS properties alphabetically. * @param firstProperty The first property to compare. * @param secondProperty The second property to compare. * @returns A number indicating the relative order of the properties (-1, 0, or 1). */ export declare const comparePropertiesAlphabetically: (firstProperty: TSESTree.Property, secondProperty: TSESTree.Property) => number;