Skip to content

Commit c712bf4

Browse files
committed
feat: add extends types
1 parent ff621ca commit c712bf4

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

src/config/extends.d.ts

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)