forked from sindresorhus/eslint-plugin-unicorn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrename-rule.mjs
87 lines (73 loc) · 2.08 KB
/
rename-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
#!/usr/bin/env node
import fs, {promises as fsAsync} from 'node:fs';
import enquirer from 'enquirer';
import unicorn from '../index.js';
const rules = Object.keys(unicorn.rules);
const resolveFile = file => new URL(`../${file}`, import.meta.url);
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(resolveFile(file))) {
throw new Error(`“${file}” already exists.`);
}
}
}
async function renameFile(source, target) {
source = resolveFile(source);
target = resolveFile(target);
if (fs.existsSync(source)) {
await fsAsync.rename(source, target);
}
}
async function renameRule(from, to) {
await renameFile(`docs/rules/${from}.md`, `docs/rules/${to}.md`);
await renameFile(`rules/${from}.js`, `rules/${to}.js`);
await renameFile(`test/${from}.mjs`, `test/${to}.mjs`);
await renameFile(`test/snapshots/${from}.mjs.md`, `test/snapshots/${to}.mjs.md`);
await renameFile(`test/snapshots/${from}.mjs.snap`, `test/snapshots/${to}.mjs.snap`);
for (const file of [
'readme.md',
'index.js',
`docs/rules/${to}.md`,
`rules/${to}.js`,
`test/${to}.mjs`,
`test/snapshots/${to}.mjs.md`,
].map(file => resolveFile(file))
) {
if (!fs.existsSync(file)) {
continue;
}
// eslint-disable-next-line no-await-in-loop
let text = await fsAsync.readFile(file, 'utf8');
text = text.replaceAll(from, to);
// eslint-disable-next-line no-await-in-loop
await fsAsync.writeFile(file, text);
}
}
const run = async () => {
const originalRuleId = await new enquirer.AutoComplete({
message: 'Select the rule you want rename:',
limit: 10,
choices: rules,
}).run();
const ruleId = await new enquirer.Input({
message: 'New name:',
initial: originalRuleId,
}).run();
if (!ruleId || originalRuleId === ruleId) {
return;
}
if (Reflect.has(rules, ruleId)) {
console.log(`${ruleId} already exists.`);
return;
}
checkFiles(ruleId);
renameRule(originalRuleId, ruleId);
};
await run();