We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
extends
1 parent ff621ca commit c712bf4Copy full SHA for c712bf4
src/config/extends.d.ts
@@ -0,0 +1,18 @@
1
+import type { LiteralUnion } from '../utils'
2
+
3
+export interface CustomExtends {}
4
5
+export type KnownExtends = LiteralUnion<
6
+ | 'stylelint-config-standard'
7
+ | 'stylelint-config-standard-scss'
8
+ | 'stylelint-config-recess-order'
9
+ | 'stylelint-config-rational-order'
10
+ | 'stylelint-config-prettier'
11
+ | 'stylelint-config-prettier-scss'
12
+ | 'stylelint-config-recommended-vue'
13
+ | 'stylelint-config-sass-guidelines'
14
+ | 'stylelint-config-primer'
15
+ | 'stylelint-config-wikimedia'
16
+ | 'stylelint-config-wordpress'
17
+ | keyof CustomExtends
18
+>
0 commit comments