Skip to content

Commit 0ee1971

Browse files
committed
feat: export all rules options
1 parent 9be8471 commit 0ee1971

File tree

1 file changed

+125
-0
lines changed

1 file changed

+125
-0
lines changed

src/rules/_stylelint.d.ts

Lines changed: 125 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,125 @@
1+
export type * from './stylelint/alpha-value-notation'
2+
export type * from './stylelint/annotation-no-unknown'
3+
export type * from './stylelint/at-rule-allowed-list'
4+
export type * from './stylelint/at-rule-disallowed-list'
5+
export type * from './stylelint/at-rule-empty-line-before'
6+
export type * from './stylelint/at-rule-no-unknown'
7+
export type * from './stylelint/at-rule-no-vendor-prefix'
8+
export type * from './stylelint/at-rule-property-required-list'
9+
export type * from './stylelint/block-no-empty'
10+
export type * from './stylelint/color-function-notation'
11+
export type * from './stylelint/color-hex-alpha'
12+
export type * from './stylelint/color-hex-length'
13+
export type * from './stylelint/color-named'
14+
export type * from './stylelint/color-no-hex'
15+
export type * from './stylelint/color-no-invalid-hex'
16+
export type * from './stylelint/comment-empty-line-before'
17+
export type * from './stylelint/comment-no-empty'
18+
export type * from './stylelint/comment-pattern'
19+
export type * from './stylelint/comment-whitespace-inside'
20+
export type * from './stylelint/comment-word-disallowed-list'
21+
export type * from './stylelint/custom-media-pattern'
22+
export type * from './stylelint/custom-property-empty-line-before'
23+
export type * from './stylelint/custom-property-no-missing-var-function'
24+
export type * from './stylelint/custom-property-pattern'
25+
export type * from './stylelint/declaration-block-no-duplicate-custom-properties'
26+
export type * from './stylelint/declaration-block-no-duplicate-properties'
27+
export type * from './stylelint/declaration-block-no-redundant-longhand-properties'
28+
export type * from './stylelint/declaration-block-no-shorthand-property-overrides'
29+
export type * from './stylelint/declaration-block-single-line-max-declarations'
30+
export type * from './stylelint/declaration-empty-line-before'
31+
export type * from './stylelint/declaration-no-important'
32+
export type * from './stylelint/declaration-property-max-values'
33+
export type * from './stylelint/declaration-property-unit-allowed-list'
34+
export type * from './stylelint/declaration-property-unit-disallowed-list'
35+
export type * from './stylelint/declaration-property-value-allowed-list'
36+
export type * from './stylelint/declaration-property-value-disallowed-list'
37+
export type * from './stylelint/declaration-property-value-no-unknown'
38+
export type * from './stylelint/font-family-name-quotes'
39+
export type * from './stylelint/font-family-no-duplicate-names'
40+
export type * from './stylelint/font-family-no-missing-generic-family-keyword'
41+
export type * from './stylelint/font-weight-notation'
42+
export type * from './stylelint/function-allowed-list'
43+
export type * from './stylelint/function-calc-no-unspaced-operator'
44+
export type * from './stylelint/function-disallowed-list'
45+
export type * from './stylelint/function-linear-gradient-no-nonstandard-direction'
46+
export type * from './stylelint/function-name-case'
47+
export type * from './stylelint/function-no-unknown'
48+
export type * from './stylelint/function-url-no-scheme-relative'
49+
export type * from './stylelint/function-url-quotes'
50+
export type * from './stylelint/function-url-scheme-allowed-list'
51+
export type * from './stylelint/function-url-scheme-disallowed-list'
52+
export type * from './stylelint/hue-degree-notation'
53+
export type * from './stylelint/import-notation'
54+
export type * from './stylelint/keyframe-block-no-duplicate-selectors'
55+
export type * from './stylelint/keyframe-declaration-no-important'
56+
export type * from './stylelint/keyframe-selector-notation'
57+
export type * from './stylelint/keyframes-name-pattern'
58+
export type * from './stylelint/length-zero-no-unit'
59+
export type * from './stylelint/max-nesting-depth'
60+
export type * from './stylelint/media-feature-name-allowed-list'
61+
export type * from './stylelint/media-feature-name-disallowed-list'
62+
export type * from './stylelint/media-feature-name-no-unknown'
63+
export type * from './stylelint/media-feature-name-no-vendor-prefix'
64+
export type * from './stylelint/media-feature-name-unit-allowed-list'
65+
export type * from './stylelint/media-feature-name-value-allowed-list'
66+
export type * from './stylelint/media-feature-name-value-no-unknown'
67+
export type * from './stylelint/media-feature-range-notation'
68+
export type * from './stylelint/media-query-no-invalid'
69+
export type * from './stylelint/named-grid-areas-no-invalid'
70+
export type * from './stylelint/no-descending-specificity'
71+
export type * from './stylelint/no-duplicate-at-import-rules'
72+
export type * from './stylelint/no-duplicate-selectors'
73+
export type * from './stylelint/no-empty-source'
74+
export type * from './stylelint/no-invalid-double-slash-comments'
75+
export type * from './stylelint/no-invalid-position-at-import-rule'
76+
export type * from './stylelint/no-irregular-whitespace'
77+
export type * from './stylelint/no-unknown-animations'
78+
export type * from './stylelint/no-unknown-custom-properties'
79+
export type * from './stylelint/number-max-precision'
80+
export type * from './stylelint/property-allowed-list'
81+
export type * from './stylelint/property-disallowed-list'
82+
export type * from './stylelint/property-no-unknown'
83+
export type * from './stylelint/property-no-vendor-prefix'
84+
export type * from './stylelint/rule-empty-line-before'
85+
export type * from './stylelint/rule-selector-property-disallowed-list'
86+
export type * from './stylelint/selector-anb-no-unmatchable'
87+
export type * from './stylelint/selector-attribute-name-disallowed-list'
88+
export type * from './stylelint/selector-attribute-operator-allowed-list'
89+
export type * from './stylelint/selector-attribute-operator-disallowed-list'
90+
export type * from './stylelint/selector-attribute-quotes'
91+
export type * from './stylelint/selector-class-pattern'
92+
export type * from './stylelint/selector-combinator-allowed-list'
93+
export type * from './stylelint/selector-combinator-disallowed-list'
94+
export type * from './stylelint/selector-disallowed-list'
95+
export type * from './stylelint/selector-id-pattern'
96+
export type * from './stylelint/selector-max-attribute'
97+
export type * from './stylelint/selector-max-class'
98+
export type * from './stylelint/selector-max-combinators'
99+
export type * from './stylelint/selector-max-compound-selectors'
100+
export type * from './stylelint/selector-max-id'
101+
export type * from './stylelint/selector-max-pseudo-class'
102+
export type * from './stylelint/selector-max-specificity'
103+
export type * from './stylelint/selector-max-type'
104+
export type * from './stylelint/selector-max-universal'
105+
export type * from './stylelint/selector-nested-pattern'
106+
export type * from './stylelint/selector-no-qualifying-type'
107+
export type * from './stylelint/selector-no-vendor-prefix'
108+
export type * from './stylelint/selector-not-notation'
109+
export type * from './stylelint/selector-pseudo-class-allowed-list'
110+
export type * from './stylelint/selector-pseudo-class-disallowed-list'
111+
export type * from './stylelint/selector-pseudo-class-no-unknown'
112+
export type * from './stylelint/selector-pseudo-element-allowed-list'
113+
export type * from './stylelint/selector-pseudo-element-colon-notation'
114+
export type * from './stylelint/selector-pseudo-element-disallowed-list'
115+
export type * from './stylelint/selector-pseudo-element-no-unknown'
116+
export type * from './stylelint/selector-type-case'
117+
export type * from './stylelint/selector-type-no-unknown'
118+
export type * from './stylelint/shorthand-property-no-redundant-values'
119+
export type * from './stylelint/string-no-newline'
120+
export type * from './stylelint/time-min-milliseconds'
121+
export type * from './stylelint/unit-allowed-list'
122+
export type * from './stylelint/unit-disallowed-list'
123+
export type * from './stylelint/unit-no-unknown'
124+
export type * from './stylelint/value-keyword-case'
125+
export type * from './stylelint/value-no-vendor-prefix'

0 commit comments

Comments
 (0)