UNPKG

@team23/stylelint-config-team23-standard

Version:

A set of stylelint rules used by TEAM23 for standard css projects

56 lines 1.62 kB
declare const _default: { extends: string[]; rules: { /** * Specify a list of disallowed at-rules. */ 'at-rule-disallowed-list': string[]; /** * Disallow !important within declarations. */ 'declaration-no-important': boolean; /** * Disallow unknown functions. */ 'function-no-unknown': null; /** * Specify string or URL notation for @import rules. */ 'import-notation': null; /** * Limit the depth of nesting. */ 'max-nesting-depth': (number | { ignore: string[]; })[]; /** * Disallow selectors of lower specificity from coming after overriding selectors of higher specificity. * It is recommended turning this rule off if you use a lot of nesting. */ 'no-descending-specificity': null; /** * Disallow empty sources. */ 'no-empty-source': null; /** * Specify a pattern for class selectors. */ 'selector-class-pattern': (string | { message: string; })[]; /** * Limit the number of compound selectors in a selector. */ 'selector-max-compound-selectors': number; /** * Limit the number of ID selectors in a selector. */ 'selector-max-id': number; /** * Disallow unknown type selectors. */ 'selector-type-no-unknown': null; }; }; export default _default; //# sourceMappingURL=index.d.ts.map