UNPKG

@modyqyw/fabric

Version:

Opinionated shareable specifications for git-based JavaScript/TypeScript projects.

42 lines (38 loc) 933 B
import { Config as Config$1 } from 'stylelint'; type Config = Config$1; interface Options { /** * Sort CSS or SCSS declarations. * * Conflicts with prettier-plugin-css-order. * * @default true */ order?: boolean; /** * Prevent the use of low performance animation and transition properties. * * @default true */ highPerformanceAnimation?: boolean; /** * Enforce defensive CSS best practices. * * @default true */ defensiveCss?: boolean; /** * Enforce the use of logical CSS properties, values and units. * * @default false */ logicalCss?: boolean; /** * Support SCSS. * * Enabled by default if you have sass installed. */ scss?: boolean; } declare function stylelint(options?: Options, userConfig?: Config): Config; export { type Config as C, type Options as O, stylelint as s };