-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathcreate-eslint-config.js
347 lines (307 loc) · 9.53 KB
/
create-eslint-config.js
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
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
#!/usr/bin/env node
import { existsSync, readFileSync, writeFileSync, unlinkSync } from 'node:fs'
import { createRequire } from 'node:module'
import path from 'node:path'
import process from 'node:process'
import { bold, blue, yellow, red, green, dim } from 'kolorist'
import createConfig, { deepMerge, CREATE_ALIAS_SETTING_PLACEHOLDER } from '../index.js'
const require = createRequire(import.meta.url)
const Enquirer = require('enquirer')
const enquirer = new Enquirer()
function abort () {
console.error(red('✖') + ' Operation cancelled')
process.exit(1)
}
function prompt (questions) {
return enquirer.prompt(questions).catch(abort)
}
const cwd = process.cwd()
const requireInCwd = createRequire(path.resolve(cwd, 'index.cjs'))
// Only works in directories that has a `package.json`
const pkgJsonPath = path.resolve(cwd, 'package.json')
if (!existsSync(pkgJsonPath)) {
console.error(`${bold(yellow('package.json'))} not found in the current directory.`)
abort()
}
const rawPkgJson = readFileSync(pkgJsonPath, 'utf-8')
function inferIndent (rawJson) {
const lines = rawJson.split('\n')
const firstLineWithIndent = lines.find(l => l.startsWith(' ') || l.startsWith('\t'))
if (!firstLineWithIndent) { return '' }
return /^\s+/.exec(firstLineWithIndent)[0]
}
const indent = inferIndent(rawPkgJson)
const pkg = JSON.parse(rawPkgJson)
// 1. check for existing config files
// `.eslintrc.*`, `eslint.config.*` and `eslintConfig` in `package.json`
// ask if wanna overwrite?
const eslintConfigFormats = [
'.eslintrc.js',
'.eslintrc.cjs',
'.eslintrc.yaml',
'.eslintrc.yml',
'.eslintrc.json',
'eslint.config.js',
'eslint.config.mjs',
'eslint.config.cjs'
]
for (const configFileName of eslintConfigFormats) {
const fullConfigPath = path.resolve(cwd, configFileName)
if (existsSync(fullConfigPath)) {
const { shouldRemove } = await prompt({
type: 'toggle',
disabled: 'No',
enabled: 'Yes',
name: 'shouldRemove',
message:
`Found existing ESLint config file: ${bold(blue(configFileName))}.\n` +
'Do you want to remove the config file and continue?',
initial: false
})
if (shouldRemove) {
unlinkSync(fullConfigPath)
} else {
abort()
}
}
}
if (pkg.eslintConfig) {
const { shouldRemoveConfigField } = await prompt({
type: 'toggle',
disabled: 'No',
enabled: 'Yes',
name: 'shouldRemoveConfigField',
message:
`Found existing ${bold(blue('eslintConfig'))} field in ${bold(yellow('package.json'))}.\n` +
'Do you want to remove the config field and continue?',
initial: false
})
if (shouldRemoveConfigField) {
delete pkg.eslintConfig
}
}
// 2. Config format
let configFormat
try {
const eslintVersion = requireInCwd('eslint/package.json').version
console.info(dim(`Detected ESLint version: ${eslintVersion}`))
const [major, minor] = eslintVersion.split('.')
if (parseInt(major) >= 9) {
configFormat = 'flat'
} else if (parseInt(major) === 8 && parseInt(minor) >= 57) {
throw eslintVersion
} else {
configFormat = 'eslintrc'
}
} catch (e) {
const anwsers = await prompt({
type: 'select',
name: 'configFormat',
message: 'Which configuration file format should be used?',
choices: [
{
name: 'flat',
message: 'eslint.config.js (a.k.a. Flat Config, the new default)'
},
{
name: 'eslintrc',
message: `.eslintrc.cjs (deprecated with ESLint v9.0.0)`
},
]
})
configFormat = anwsers.configFormat
}
// 3. Check Vue
// Not detected? Choose from Vue 2 or 3
// TODO: better support for 2.7 and vue-demi
let vueVersion
try {
vueVersion = requireInCwd('vue/package.json').version
console.info(dim(`Detected Vue.js version: ${vueVersion}`))
} catch (e) {
const anwsers = await prompt({
type: 'select',
name: 'vueVersion',
message: 'Which Vue.js version do you use in the project?',
choices: [
'3.x',
'2.x'
]
})
vueVersion = anwsers.vueVersion
}
// 4. Choose a style guide
// - Error Prevention (ESLint Recommended)
// - Standard
// - Airbnb
const { styleGuide } = await prompt({
type: 'select',
name: 'styleGuide',
message: 'Which style guide do you want to follow?',
choices: [
{
name: 'default',
message: 'ESLint Recommended (Error-Prevention-Only)'
},
{
name: 'airbnb',
message: `Airbnb ${dim('(https://airbnb.io/javascript/)')}`
},
{
name: 'standard',
message: `Standard ${dim('(https://standardjs.com/)')}`
}
]
})
// 5. Check TypeScript
// 5.1 Allow JS?
// 5.2 Allow JS in Vue?
// 5.3 Allow JSX (TSX, if answered no in 5.1) in Vue?
let hasTypeScript = false
const additionalConfig = {}
try {
const tsVersion = requireInCwd('typescript/package.json').version
console.info(dim(`Detected TypeScript version: ${tsVersion}`))
hasTypeScript = true
} catch (e) {
const anwsers = await prompt({
type: 'toggle',
disabled: 'No',
enabled: 'Yes',
name: 'hasTypeScript',
message: 'Does your project use TypeScript?',
initial: false
})
hasTypeScript = anwsers.hasTypeScript
}
// TODO: we don't have more fine-grained sub-rulsets in `@vue/eslint-config-typescript` yet
if (hasTypeScript && styleGuide !== 'default') {
const { allowJsInVue } = await prompt({
type: 'toggle',
disabled: 'No',
enabled: 'Yes',
name: 'allowJsInVue',
message: `Do you use plain ${yellow('<script>')}s (without ${blue('lang="ts"')}) in ${green('.vue')} files?`,
initial: false
})
if (allowJsInVue) {
const { allowJsxInVue } = await prompt({
type: 'toggle',
disabled: 'No',
enabled: 'Yes',
name: 'allowJsxInVue',
message: `Do you use ${yellow('<script lang="jsx">')}s in ${green('.vue')} files (not recommended)?`,
initial: false
})
additionalConfig.extends = [
`@vue/eslint-config-${styleGuide}-with-typescript/${
allowJsxInVue
? 'allow-jsx-in-vue'
: 'allow-js-in-vue'
}`
]
} else {
const { allowTsxInVue } = await prompt({
type: 'toggle',
disabled: 'No',
enabled: 'Yes',
name: 'allowTsxInVue',
message: `Do you use ${yellow('<script lang="tsx">')}s in ${green('.vue')} files (not recommended)?`,
initial: false
})
if (allowTsxInVue) {
additionalConfig.extends = [
`@vue/eslint-config-${styleGuide}-with-typescript/allow-tsx-in-vue`
]
}
}
}
// 6. If Airbnb && !TypeScript
// Does your project use any path aliases?
// Show [snippet prompts](https://github.com/enquirer/enquirer#snippet-prompt) for the user to input aliases
if (styleGuide === 'airbnb' && !hasTypeScript) {
const { hasAlias } = await prompt({
type: 'toggle',
disabled: 'No',
enabled: 'Yes',
name: 'hasAlias',
message: 'Does your project use any path aliases?',
initial: false
})
if (hasAlias) {
console.info()
console.info(`Please input your alias configurations (press ${bold(green('<Enter>'))} to skip):`)
const aliases = {}
while (true) {
console.info()
const { prefix } = await prompt({
type: 'input',
name: 'prefix',
message: 'Alias prefix',
validate: (val) => {
if (Object.hasOwn(aliases, val)) {
return red(`${green(val)} has already been aliased to ${green(aliases[val])}`)
}
return true
}
})
if (!prefix) {
break
}
const { replacement } = await prompt({
type: 'input',
name: 'replacement',
message: `Path replacement for the prefix ${green(prefix)}`,
validate: (value) => value !== ''
})
aliases[prefix] = replacement
}
if (Object.keys(aliases).length > 0) {
additionalConfig.settings = { [CREATE_ALIAS_SETTING_PLACEHOLDER]: aliases }
}
console.info()
}
}
// 7. Do you need Prettier to format your codebase?
const { needsPrettier } = await prompt({
type: 'toggle',
disabled: 'No',
enabled: 'Yes',
name: 'needsPrettier',
message: 'Do you need Prettier to format your code?'
})
const { pkg: pkgToExtend, files } = createConfig({
vueVersion,
configFormat,
styleGuide,
hasTypeScript,
needsPrettier,
additionalConfig
})
// TODO:
// Add `lint` command to package.json
// - eslint ... (extensions vary based on the language)
// - note: for Vue CLI, remove the @vue/cli-plugin-eslint and override its lint command, they are too outdated.
// Add a `format` command to package.json when prettier is used
// TODO:
// Add a note about that Vue CLI projects may need a `tsconfig.eslint.json`
deepMerge(pkg, pkgToExtend)
// Write `package.json` back
writeFileSync(pkgJsonPath, JSON.stringify(pkg, null, indent) + '\n', 'utf-8')
// Write files back
for (const [name, content] of Object.entries(files)) {
const fullPath = path.resolve(cwd, name)
writeFileSync(fullPath, content, 'utf-8')
}
const configFilename = configFormat === 'flat' ? 'eslint.config.js' : '.eslintrc.cjs'
// Prompt: Run `npm install` or `yarn` or `pnpm install`
const userAgent = process.env.npm_config_user_agent ?? ''
const packageManager = /pnpm/.test(userAgent) ? 'pnpm' : /yarn/.test(userAgent) ? 'yarn' : 'npm'
const installCommand = packageManager === 'yarn' ? 'yarn' : `${packageManager} install`
const lintCommand = packageManager === 'npm' ? 'npm run lint' : `${packageManager} lint`
console.info(
'\n' +
`${bold(yellow('package.json'))} and ${bold(blue(configFilename))} have been updated.\n` +
`Now please run ${bold(green(installCommand))} to re-install the dependencies.\n` +
`Then you can run ${bold(green(lintCommand))} to lint your files.`
)