-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpresets.ts
142 lines (137 loc) · 3.06 KB
/
presets.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
import {
FlatConfigComposer,
type Arrayable,
type Awaitable,
} from 'eslint-flat-config-utils'
import {
command,
comments,
deMorgan,
ignores,
imports,
javascript,
jsdoc,
jsonc,
markdown,
node,
pnpm,
prettier,
regexp,
sortImports,
sortPackageJson,
sortPnpmWorkspace,
sortTsconfig,
specialCases,
typescript,
unicorn,
unocss,
vue,
yml,
} from './configs'
import { hasUnocss, hasVue } from './env'
import type { ConfigNames } from './typegen'
import type { Config } from './types'
import type { Linter } from 'eslint'
/** Ignore common files and include javascript support */
export const presetJavaScript = (): Config[] => [
...ignores(),
...javascript(),
...comments(),
...imports(),
...unicorn(),
...node(),
...jsdoc(),
...regexp(),
...deMorgan(),
]
/** Includes basic json(c) file support and sorting json keys */
export const presetJsonc = (): Config[] => [
...jsonc(),
...sortPackageJson(),
...sortTsconfig(),
...sortPnpmWorkspace(),
]
/** Includes markdown, yaml + `presetJsonc` support */
export const presetLangsExtensions = (): Config[] => [
...markdown(),
...yml(),
...presetJsonc(),
]
/** Includes `presetJavaScript` and typescript support */
export const presetBasic = (): Config[] => [
...presetJavaScript(),
...typescript(),
...sortImports(),
]
/**
* Includes
* - `presetBasic` (JS+TS) support
* - `presetLangsExtensions` (markdown, yaml, jsonc) support
* - Vue support
* - UnoCSS support (`uno.config.ts` is required)
* - Prettier support
*/
export const presetAll = async (): Promise<Config[]> => [
...presetBasic(),
...presetLangsExtensions(),
...vue(),
...(await unocss()),
...prettier(),
...command(),
...(await pnpm()),
...specialCases(),
]
export interface Options {
/** Vue support. Auto-enable if detected. */
vue?: boolean
/** Prettier support. Default: true */
prettier?: boolean
/** markdown support. Default: true */
markdown?: boolean
/** UnoCSS support. Auto-enable if detected. */
unocss?: boolean
sortKeys?: boolean
command?: boolean
pnpm?: boolean
}
/** `@sxzz`'s preset. */
export function sxzz(
options: Options = {},
...userConfigs: Awaitable<
Arrayable<Config> | FlatConfigComposer<any, any> | Linter.Config[]
>[]
): FlatConfigComposer<Config, ConfigNames> {
const {
command: enableCommand = true,
markdown: enableMarkdown = true,
pnpm: enablePnpm = false,
prettier: enablePrettier = true,
unocss: enableUnocss = hasUnocss(),
vue: enableVue = hasVue(),
} = options
const configs: Awaitable<Config[]>[] = [presetBasic(), yml(), presetJsonc()]
if (enableVue) {
configs.push(vue())
}
if (enableMarkdown) {
configs.push(markdown())
}
if (enableUnocss) {
configs.push(unocss())
}
if (enablePrettier) {
configs.push(prettier())
}
if (enableCommand) {
configs.push(command())
}
if (enablePnpm) {
configs.push(pnpm())
}
configs.push(specialCases())
const composer = new FlatConfigComposer<Config, ConfigNames>(
...configs,
...(userConfigs as any),
)
return composer
}