-
-
Notifications
You must be signed in to change notification settings - Fork 243
/
Copy pathgenerate-rule-docs.ts
600 lines (514 loc) · 16.1 KB
/
generate-rule-docs.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
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
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
import type {
InvalidTestCase,
ValidTestCase,
} from '@typescript-eslint/rule-tester';
import type { TSESLint } from '@typescript-eslint/utils';
import { compile } from 'json-schema-to-typescript';
import traverse from 'json-schema-traverse';
import { mkdirSync, readdirSync, rmSync, writeFileSync } from 'node:fs';
import { join, relative } from 'node:path';
import { format, resolveConfig } from 'prettier';
import ts from 'typescript';
// Import directly from source for this utility script
import { SPECIAL_UNDERLINE_CHARS } from '../../packages/test-utils/src/convert-annotated-source-to-failure-case';
const plugin = process.argv[2];
if (plugin !== 'eslint-plugin-template' && plugin !== 'eslint-plugin') {
console.error(
`\nError: the first argument to the script must be "eslint-plugin-template" or "eslint-plugin"`,
);
process.exit(1);
}
const docsOutputDir = join(__dirname, `../../packages/${plugin}/docs/rules`);
const rulesDir = join(__dirname, `../../packages/${plugin}/src/rules`);
const ruleFiles = readdirSync(rulesDir);
const testDirsDir = join(__dirname, `../../packages/${plugin}/tests/rules`);
const testDirs = readdirSync(testDirsDir);
(async function main() {
const allRuleData = await generateAllRuleData();
// Delete existing docs to ensure that any deleted ones do not get left behind
try {
rmSync(docsOutputDir, { recursive: true, force: true });
} catch {}
mkdirSync(docsOutputDir, { recursive: true });
for (const [ruleName, ruleData] of Object.entries(allRuleData)) {
const {
ruleConfig: {
meta: { deprecated, replacedBy, type, fixable, schema, hasSuggestions },
defaultOptions,
},
docsExtension,
ruleFilePath,
testCasesFilePath,
} = ruleData;
const docs = ruleData.ruleConfig.meta.docs!;
const { description } = docs;
let schemaAsInterface = '';
if (Array.isArray(schema) && schema[0]) {
/**
* json-schema-to-typescript does not do anything with the "default" property,
* but it's really useful to include in the documentation, so we apply the
* default value in a consistent way to the "description" property before
* converting.
*/
traverse(schema[0], {
allKeys: true,
cb: (...data) => {
const [schemaNode, , , , , , keyIndex] = data;
let defaultValue = undefined;
let hasDefaultValue = false;
if (typeof schemaNode.default !== 'undefined') {
defaultValue = schemaNode.default;
hasDefaultValue = true;
} else if (defaultOptions?.length) {
for (const defaultOption of defaultOptions) {
if (
typeof defaultOption === 'object' &&
(keyIndex as string) in defaultOption
) {
defaultValue = defaultOption[keyIndex as string];
hasDefaultValue = true;
}
}
}
if (hasDefaultValue) {
if (schemaNode.description) {
schemaNode.description += '\n\n';
} else {
schemaNode.description = '';
}
const serializedDefaultValue = JSON.stringify(defaultValue);
schemaNode.description += `Default: \`${serializedDefaultValue}\``;
return;
}
},
});
schemaAsInterface = await compile(schema[0], 'Options', {
bannerComment: '',
});
schemaAsInterface = schemaAsInterface.replace('export ', '');
}
const fullRuleName = `@angular-eslint/${
plugin === 'eslint-plugin-template' ? 'template/' : ''
}${ruleName}`;
const md = `
<!--
DO NOT EDIT.
This markdown file was autogenerated using a mixture of the following files as the source of truth for its data:
- ${relativePath(docsOutputDir, ruleFilePath)}
- ${relativePath(docsOutputDir, testCasesFilePath)}
In order to update this file, it is therefore those files which need to be updated, as well as potentially the generator script:
- ${relativePath(docsOutputDir, __filename)}
-->
<br>
# \`${fullRuleName}\`
${
deprecated
? `## ⚠️ THIS RULE IS DEPRECATED\n\n${
replacedBy
? `Please use ${(replacedBy || [])
.map(
(r: string) =>
`\`@angular-eslint/${
plugin === 'eslint-plugin-template' ? 'template/' : ''
}${r}\``,
)
.join(', ')} instead.`
: ''
}\n\n---\n\n`
: ''
}${description}
- Type: ${type}
${fixable === 'code' ? '- 🔧 Supports autofix (`--fix`)\n' : ''}
${
hasSuggestions
? '- 💡 Provides suggestions on how to fix issues (https://eslint.org/docs/developer-guide/working-with-rules#providing-suggestions)'
: ''
}${
docsExtension?.rationale
? `
<br>
## Rationale
${docsExtension.rationale}
`
: ''
}
<br>
## Rule Options
${
schemaAsInterface
? `
The rule accepts an options object with the following properties:
\`\`\`ts
${schemaAsInterface}
\`\`\`
`
: 'The rule does not have any configuration options.'
}
<br>
## Usage Examples
> The following examples are generated automatically from the actual unit tests within the plugin, so you can be assured that their behavior is accurate based on the current commit.
<br>
<details>
<summary>❌ - Toggle examples of <strong>incorrect</strong> code for this rule</summary>
${convertCodeExamplesToMarkdown(
ruleData.invalid,
'invalid',
plugin === 'eslint-plugin-template' ? 'html' : 'ts',
fullRuleName,
)}
</details>
<br>
---
<br>
<details>
<summary>✅ - Toggle examples of <strong>correct</strong> code for this rule</summary>
${convertCodeExamplesToMarkdown(
ruleData.valid,
'valid',
plugin === 'eslint-plugin-template' ? 'html' : 'ts',
fullRuleName,
)}
</details>
<br>
`;
const outputFilePath = join(docsOutputDir, `${ruleName}.md`);
writeFileSync(
outputFilePath,
await format(md, {
/**
* NOTE: In the .prettierrc we set:
* "embeddedLanguageFormatting": "off"
*
* ...for these docs files as it's important we don't let prettier format the
* code samples, because otherwise it will move the ~~~ (error highlights) to
* the wrong locations.
*/
...(await resolveConfig(outputFilePath)),
parser: 'markdown',
}),
);
}
console.log(`\n✨ Updated docs for all rules in "${plugin}"`);
})();
interface RuleData {
ruleFilePath: string;
testCasesFilePath: string;
ruleConfig: TSESLint.RuleModule<string, []> & {
defaultOptions?: Record<string, unknown>[];
};
// Rules can optionally export extended documentation content (outside of ESLint's concept of "docs")
docsExtension?: {
rationale?: string;
};
valid: ExtractedTestCase[];
invalid: ExtractedTestCase[];
}
type AllRuleData = {
[ruleName: string]: RuleData;
};
interface ExtractedTestCase {
code: string;
options?: unknown[];
filename?: string;
}
async function generateAllRuleData(): Promise<AllRuleData> {
const ruleData: AllRuleData = {};
// For rule sources we just import/execute the rule source file
for (const ruleFile of ruleFiles) {
const ruleFilePath = join(rulesDir, ruleFile.replace('.ts', ''));
const { default: ruleConfig, RULE_NAME, RULE_DOCS_EXTENSION } = require(
ruleFilePath,
);
ruleData[RULE_NAME] = {
ruleConfig,
ruleFilePath: ruleFilePath + '.ts',
docsExtension: RULE_DOCS_EXTENSION,
} as RuleData;
}
/**
* For tests we want to preserve the annotated sources. We can preserve that while
* importing the test source by setting an environment variable. This allows parameterized
* tests to be used, which we wouldn't be able to use if we just parsed the TypeScript.
*/
process.env.GENERATING_RULE_DOCS = '1';
try {
for (const testDir of testDirs) {
const testDirPath = join(testDirsDir, testDir);
const casesFilePath = join(testDirPath, 'cases.ts');
const { valid, invalid } = require(casesFilePath) as {
valid: (string | ValidTestCase<[]>)[];
invalid: InvalidTestCase<'', []>[];
};
const extractedValid: ExtractedTestCase[] = valid
.map((test) =>
typeof test === 'string'
? { code: test }
: {
code: test.code,
options:
test.options && test.options.length > 0
? [...test.options]
: undefined,
filename: test.filename,
},
)
.filter((test) => test.code);
const extractedInvalid: ExtractedTestCase[] = invalid
.map((test) => ({
code: test.code,
options:
test.options && test.options.length > 0
? [...test.options]
: undefined,
filename: test.filename,
}))
.filter((test) => test.code);
ruleData[testDir] = {
...ruleData[testDir],
testCasesFilePath: casesFilePath,
valid: extractedValid,
invalid: extractedInvalid,
};
}
} finally {
delete process.env.GENERATING_RULE_DOCS;
}
return ruleData;
}
function standardizeSpecialUnderlineChar(str: string): string {
/**
* It is important that we only update special characters when we are on a line
* which only has special characters on it (as well as whitespace). Otherwise
* we will end up replacing real characters from the source code in the example.
*/
const specialCharsOrWhitespaceRegExp = new RegExp(
`^(${SPECIAL_UNDERLINE_CHARS.map(escapeRegExp).join('|')}|\\s)+$`,
);
const whitespaceOnlyRegExp = /^\s+$/;
return str
.split('\n')
.map((line) => {
// Is line with exclusively special characters and whitespace (but not just whitespace)?
if (
!line.match(whitespaceOnlyRegExp) &&
line.match(specialCharsOrWhitespaceRegExp)
) {
return line
.split('')
.map((char) =>
SPECIAL_UNDERLINE_CHARS.includes(
char as (typeof SPECIAL_UNDERLINE_CHARS)[number],
)
? '~'
: char,
)
.join('');
}
return line;
})
.join('\n');
}
// https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Regular_Expressions#escaping
function escapeRegExp(str: string) {
return str.replace(/[.*+?^${}()|[\]\\]/g, '\\$&'); // $& means the whole matched string
}
function convertCodeExamplesToMarkdown(
codeExamples: ExtractedTestCase[] = [],
kind: 'valid' | 'invalid',
highligher: 'html' | 'ts',
ruleName: string,
): string {
return codeExamples
.map((extractedTestCase: ExtractedTestCase, i) => {
let formattedCode = removeLeadingAndTrailingEmptyLinesFromCodeExample(
removeLeadingIndentationFromCodeExample(extractedTestCase.code),
);
if (kind === 'invalid') {
formattedCode = standardizeSpecialUnderlineChar(formattedCode);
}
const exampleRuleConfig: unknown[] = ['error'];
// Not all unit tests have options configured
if (extractedTestCase.options) {
exampleRuleConfig.push(extractedTestCase.options[0]);
}
const formattedConfig = JSON.stringify(
{
rules: {
[ruleName]: exampleRuleConfig,
},
},
null,
2,
);
return `<br>
#### ${extractedTestCase.options ? 'Custom' : 'Default'} Config
\`\`\`json
${formattedConfig}
\`\`\`
<br>
#### ${kind === 'invalid' ? '❌ Invalid' : '✅ Valid'} Code
${
extractedTestCase.filename
? `**Filename: ${extractedTestCase.filename}**`
: ''
}
\`\`\`${highligher}
${formattedCode}
\`\`\`
${
i === codeExamples.length - 1
? ''
: `<br>
---`
}
`;
})
.join('\n');
}
function removeLeadingAndTrailingEmptyLinesFromCodeExample(
code: string,
): string {
const lines = code.split('\n');
let currentLineIndex = 0;
let firstNonEmptyLineIndex = -1;
let lastNonEmptyLineIndex = -1;
for (const line of lines) {
if (/\S/.test(line)) {
if (firstNonEmptyLineIndex === -1) {
firstNonEmptyLineIndex = currentLineIndex;
}
lastNonEmptyLineIndex = currentLineIndex;
}
currentLineIndex++;
}
return lines
.filter((_, index) => {
if (index < firstNonEmptyLineIndex) {
return false;
}
if (index > lastNonEmptyLineIndex) {
return false;
}
return true;
})
.join('\n');
}
/**
* We want to remove unnecessary leading padding, but keeping everything relative,
* so that code indentation is not messed up
*/
function removeLeadingIndentationFromCodeExample(code: string): string {
let detectedAmountToTrim: number | null = null;
return code
.split('\n')
.map((line) => {
// Is whitespace-only line, ignore
if (!/\S/.test(line)) {
return line;
}
// Haven't yet determined the number of characters to trim from the beginning of each line
const charsInLine = line.split('');
if (typeof detectedAmountToTrim !== 'number') {
let numberOfLeadingWhitespaceChars = 0;
for (const char of charsInLine) {
if (!/\S/.test(char)) {
numberOfLeadingWhitespaceChars++;
continue;
}
break;
}
detectedAmountToTrim = numberOfLeadingWhitespaceChars;
}
// Trim the detected number of characters from the beginning of the current line
return (
line
.split('')
// eslint-disable-next-line @typescript-eslint/no-non-null-assertion
.filter((_, i) => !(i < detectedAmountToTrim!))
.join('')
);
})
.join('\n');
}
function convertStringLikeToCode(strLike: ts.StringLiteralLike): string {
if (ts.isStringLiteralLike(strLike)) {
return strLike.text;
}
return '';
}
function convertNumericalLiteralToCode(numLiteral: ts.NumericLiteral): number {
return Number(numLiteral.text);
}
function convertBooleanLiteralToCode(
booleanLiteral: ts.BooleanLiteral,
): boolean {
const stringified = booleanLiteral.getText();
if (stringified === 'false') {
return false;
}
if (stringified === 'true') {
return true;
}
throw new Error(
`Could not convert booleanLiteral node to code: ${booleanLiteral}`,
);
}
function convertArrayLiteralExpressionToCode(
arrExpr: ts.ArrayLiteralExpression,
): unknown[] {
const arr: unknown[] = [];
arrExpr.elements.forEach((el) => {
if (ts.isObjectLiteralExpression(el)) {
const item = convertObjectLiteralExpressionToCode(el);
arr.push(item);
}
if (ts.isStringLiteralLike(el)) {
const item = convertStringLikeToCode(el);
arr.push(item);
}
if (ts.isArrayLiteralExpression(el)) {
const item = convertArrayLiteralExpressionToCode(el);
arr.push(item);
}
});
return arr;
}
function convertObjectLiteralExpressionToCode(
objExpr: ts.ObjectLiteralExpression,
): Record<string, unknown> {
const obj: Record<string, unknown> = {};
objExpr.properties.forEach((prop) => {
if (ts.isPropertyAssignment(prop)) {
const key = prop.name.getText();
let val;
if (ts.isObjectLiteralExpression(prop.initializer)) {
val = convertObjectLiteralExpressionToCode(prop.initializer);
}
if (ts.isStringLiteralLike(prop.initializer)) {
val = convertStringLikeToCode(prop.initializer);
}
if (ts.isArrayLiteralExpression(prop.initializer)) {
val = convertArrayLiteralExpressionToCode(prop.initializer);
}
if (ts.isNumericLiteral(prop.initializer)) {
val = convertNumericalLiteralToCode(prop.initializer);
}
if (
prop.initializer.kind === ts.SyntaxKind.TrueKeyword ||
prop.initializer.kind === ts.SyntaxKind.FalseKeyword
) {
val = convertBooleanLiteralToCode(
prop.initializer as ts.BooleanLiteral,
);
}
if (key && typeof val !== 'undefined') {
obj[key] = val;
}
}
});
return obj;
}
function relativePath(from: string, to: string) {
// On Windows relative() outputs backslashes. As the path should always contain normal slashes, replace them.
return relative(from, to).replace(/\\/g, '/');
}