-
Notifications
You must be signed in to change notification settings - Fork 472
/
Copy pathrenderEslint.ts
144 lines (131 loc) · 3.82 KB
/
renderEslint.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
143
144
import * as fs from 'node:fs'
import * as path from 'node:path'
import createESLintConfig from '@vue/create-eslint-config'
import sortDependencies from './sortDependencies'
import deepMerge from './deepMerge'
import eslintTemplatePackage from '../template/eslint/package.json' with { type: 'json' }
const eslintDeps = eslintTemplatePackage.devDependencies
export default function renderEslint(
rootDir,
{
needsTypeScript,
needsVitest,
needsCypress,
needsCypressCT,
needsOxlint,
needsPrettier,
needsPlaywright,
},
) {
const additionalConfigs = getAdditionalConfigs({
needsTypeScript,
needsVitest,
needsCypress,
needsCypressCT,
needsPlaywright,
})
const { pkg, files } = createESLintConfig({
styleGuide: 'default',
hasTypeScript: needsTypeScript,
needsOxlint,
// Theoretically, we could add Prettier without requring ESLint.
// But it doesn't seem to be a good practice, so we just let createESLintConfig handle it.
needsPrettier,
additionalConfigs,
})
// update package.json
const packageJsonPath = path.resolve(rootDir, 'package.json')
const existingPkg = JSON.parse(fs.readFileSync(packageJsonPath, 'utf8'))
const updatedPkg = sortDependencies(deepMerge(existingPkg, pkg))
fs.writeFileSync(packageJsonPath, JSON.stringify(updatedPkg, null, 2) + '\n', 'utf8')
// write to eslint.config.js, .prettierrc.json, .editorconfig, etc.
for (const [fileName, content] of Object.entries(files)) {
const fullPath = path.resolve(rootDir, fileName)
fs.writeFileSync(fullPath, content as string, 'utf8')
}
}
type ConfigItemInESLintTemplate = {
importer: string
content: string
}
type AdditionalConfig = {
devDependencies: Record<string, string>
beforeVuePlugin?: Array<ConfigItemInESLintTemplate>
afterVuePlugin?: Array<ConfigItemInESLintTemplate>
}
type AdditionalConfigArray = Array<AdditionalConfig>
// visible for testing
export function getAdditionalConfigs({
needsTypeScript,
needsVitest,
needsCypress,
needsCypressCT,
needsPlaywright,
}) {
const additionalConfigs: AdditionalConfigArray = []
if (needsVitest) {
additionalConfigs.push({
devDependencies: {
'@vitest/eslint-plugin': eslintDeps['@vitest/eslint-plugin'],
},
afterVuePlugin: [
{
importer: `import pluginVitest from '@vitest/eslint-plugin'`,
content: `
{
...pluginVitest.configs.recommended,
files: ['src/**/__tests__/*'],
},`,
},
],
})
}
if (needsCypress) {
additionalConfigs.push({
devDependencies: {
'eslint-plugin-cypress': eslintDeps['eslint-plugin-cypress'],
},
afterVuePlugin: [
{
importer:
(needsTypeScript
? `// eslint-disable-next-line @typescript-eslint/ban-ts-comment\n` +
`// @ts-ignore\n`
: '') + "import pluginCypress from 'eslint-plugin-cypress/flat'",
content: `
{
...pluginCypress.configs.recommended,
files: [
${[
...(needsCypressCT ? ['**/__tests__/*.{cy,spec}.{js,ts,jsx,tsx}'] : []),
'cypress/e2e/**/*.{cy,spec}.{js,ts,jsx,tsx}',
'cypress/support/**/*.{js,ts,jsx,tsx}',
]
.map(JSON.stringify.bind(JSON))
.join(',\n ')
.replace(/"/g, "'" /* use single quotes as in the other configs */)}
],
},`,
},
],
})
}
if (needsPlaywright) {
additionalConfigs.push({
devDependencies: {
'eslint-plugin-playwright': eslintDeps['eslint-plugin-playwright'],
},
afterVuePlugin: [
{
importer: "import pluginPlaywright from 'eslint-plugin-playwright'",
content: `
{
...pluginPlaywright.configs['flat/recommended'],
files: ['e2e/**/*.{test,spec}.{js,ts,jsx,tsx}'],
},`,
},
],
})
}
return additionalConfigs
}