-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
presets.ts
115 lines (113 loc) · 2.43 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
import {
command,
comments,
ignores,
imports,
javascript,
jsdoc,
jsonc,
markdown,
node,
prettier,
regexp,
sortImports,
sortPackageJson,
sortTsconfig,
specialCases,
typescript,
unicorn,
unocss,
vue,
yml,
} from './configs'
import { hasUnocss, hasVue } from './env'
import type { Config } from './types'
/** Ignore common files and include javascript support */
export const presetJavaScript: Config[] = [
...ignores,
...javascript,
...comments,
...imports,
...unicorn,
...node,
...jsdoc,
...regexp,
]
/** Includes basic json(c) file support and sorting json keys */
export const presetJsonc: Config[] = [
...jsonc,
...sortPackageJson,
...sortTsconfig,
]
/** 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: Config[] = [
...presetBasic,
...presetLangsExtensions,
...vue,
...unocss,
...prettier,
]
export { presetAll as all, presetBasic as basic }
/** `sxzz`'s preset. */
export function sxzz(
config: Config | Config[] = [],
{
command: enableCommand = true,
markdown: enableMarkdown = true,
prettier: enablePrettier = true,
unocss: enableUnocss = hasUnocss,
vue: enableVue = hasVue,
}: Partial<{
/** Vue support. Auto-enable. */
vue: boolean
/** Prettier support. Default: true */
prettier: boolean
/** markdown support. Default: true */
markdown: boolean
/** UnoCSS support. Auto-enable. */
unocss: boolean
sortKeys: boolean
command: boolean
}> = {},
): Config[] {
const configs: 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 (Object.keys(config).length > 0) {
configs.push(...(Array.isArray(config) ? config : [config]))
}
configs.push(...specialCases)
return configs
}