forked from sindresorhus/eslint-plugin-unicorn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcreate-rule.mjs
127 lines (113 loc) · 2.48 KB
/
create-rule.mjs
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
#!/usr/bin/env node
import fs from 'node:fs';
import path from 'node:path';
import {fileURLToPath} from 'node:url';
import enquirer from 'enquirer';
import {template} from 'lodash-es';
import {execa} from 'execa';
const dirname = path.dirname(fileURLToPath(import.meta.url));
const ROOT = path.join(dirname, '..');
function checkFiles(ruleId) {
const files = [
`docs/rules/${ruleId}.md`,
`rules/${ruleId}.js`,
`test/${ruleId}.mjs`,
`test/snapshots/${ruleId}.mjs.md`,
`test/snapshots/${ruleId}.mjs.snap`,
];
for (const file of files) {
if (fs.existsSync(path.join(ROOT, file))) {
throw new Error(`“${file}” already exists.`);
}
}
}
function renderTemplate({source, target, data}) {
const templateFile = path.join(dirname, `template/${source}`);
const targetFile = path.join(ROOT, target);
const templateContent = fs.readFileSync(templateFile, 'utf8');
const compiled = template(templateContent);
const content = compiled(data);
return fs.writeFileSync(targetFile, content);
}
async function getData() {
const questions = [
{
type: 'input',
name: 'id',
message: 'Rule name:',
validate(value) {
if (!value) {
return 'Rule name is required.';
}
if (!/^[a-z-]+$/.test(value)) {
return 'Invalid rule name.';
}
return true;
},
},
{
type: 'input',
name: 'description',
message: 'Rule description:',
validate(value) {
if (!value) {
return 'Rule description is required.';
}
return true;
},
},
{
type: 'select',
name: 'fixableType',
message: 'Is it fixable?',
choices: ['Code', 'Whitespace', 'No'],
result: value => value === 'No' ? false : value.toLowerCase(),
},
{
type: 'select',
name: 'type',
message: 'Type:',
choices: [
'problem',
'suggestion',
'layout',
],
},
{
type: 'select',
name: 'hasSuggestions',
message: 'Does it provides suggestions?',
choices: ['Yes', 'No'],
result: value => value === 'Yes',
},
];
const data = await enquirer.prompt(questions);
return data;
}
const data = await getData();
const {id} = data;
checkFiles(id);
renderTemplate({
source: 'documentation.md.jst',
target: `docs/rules/${id}.md`,
data,
});
renderTemplate({
source: 'rule.js.jst',
target: `rules/${id}.js`,
data,
});
renderTemplate({
source: 'test.mjs.jst',
target: `test/${id}.mjs`,
data,
});
try {
await execa('code', [
'--new-window',
'.',
`docs/rules/${id}.md`,
`rules/${id}.js`,
`test/${id}.mjs`,
], {cwd: ROOT});
} catch {}