forked from DefinitelyTyped/DefinitelyTyped
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dangerfile.ts
160 lines (147 loc) · 5.86 KB
/
dangerfile.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
import fs = require("fs");
import os = require("os");
import path = require("path");
import cp = require("child_process");
import { suggestionsDir } from "@definitelytyped/utils";
import { danger, fail, markdown } from "danger";
const lines: string[] = [];
const missingProperty = /module exports a property named '(.+?)', which is missing/;
if (fs.existsSync(suggestionsDir)) {
lines.push(
"Inspecting the JavaScript source for this package found some properties that are not in the .d.ts files.",
);
lines.push("The check for missing properties isn't always right, so take this list as advice, not a requirement.");
for (const suggestionFile of fs.readdirSync(suggestionsDir)) {
const path = [suggestionsDir, suggestionFile].join("/");
const suggestions = fs.readFileSync(path, "utf8").split("\n").map(x => JSON.parse(x)) as Array<
{ fileName: string; ruleName: string; message: string }
>;
const packageName = suggestionFile.slice(0, suggestionFile.indexOf(".txt"));
const missingProperties: { [s: string]: string[] } = {};
for (const s of suggestions) {
const fileName = s.fileName.slice(
s.fileName.indexOf("types/" + packageName + "/") + ("types/" + packageName + "/").length,
);
const match = s.message.match(missingProperty);
const identifier = match ? match[1] : s.message;
if (fileName in missingProperties) {
missingProperties[fileName].push(identifier);
} else {
missingProperties[fileName] = [identifier];
}
}
const topUnpkgURL = `https://unpkg.com/browse/${packageName}@latest/`;
lines.push("## " + packageName + ` ([<kbd>unpkg</kbd>](${topUnpkgURL}))`);
for (const fileName in missingProperties) {
if (Object.keys(missingProperties).length > 1) {
const originalJS = fileName.replace(".d.ts", ".js");
const unpkgURL = `https://unpkg.com/browse/${packageName}@latest/${originalJS}`;
const dtsName = packageName.replace("@", "").replace("/", "__");
const dtsURL =
`https://github.com/DefinitelyTyped/DefinitelyTyped/blob/${danger.github.pr.head.sha}/types/${dtsName}/${fileName}`;
lines.push(`### ${fileName} ([<kbd>unpkg</kbd>](${unpkgURL}), [<kbd>d.ts</kbd>](${dtsURL}))`);
}
const properties = missingProperties[fileName];
lines.push(
`was missing the following properties:
1. ` + properties.slice(0, 5).join("\n1. "),
);
if (properties.length > 5) {
const extras = properties.slice(5);
lines.push(`
<details>
<summary>as well as these ${extras.length} other properties...</summary>
<p>${extras.join(", ")}</p>
</details>
`);
}
}
}
markdown(lines.join("\n"));
}
if (danger.git.created_files.some(f => path.basename(f) === ".editorconfig")) {
fail(
"A nested .editorconfig file may not be added to a package on DefinitelyTyped. Please respect the root .editorconfig.",
danger.git.created_files.find(f => path.basename(f) === ".editorconfig"),
1,
);
}
// Tell people that they've added @me to their lib and not themselves
const newPackageJsonFiles = danger.git.created_files.filter(f => f.endsWith("package.json"));
newPackageJsonFiles.forEach(p => {
const file = fs.readFileSync(p, "utf8");
if (/"githubUsername":\s*"me"/.test(file)) {
fail("package.json should have your github username in it, not \"me\".", p);
}
});
function chunked<T>(arr: T[], size: number): T[][] {
const result: T[][] = [];
for (let i = 0; i < arr.length; i += size) {
result.push(arr.slice(i, i + size));
}
return result;
}
const unformatted = [];
const dprintErrors = [];
const allFiles = [...danger.git.created_files, ...danger.git.modified_files];
// We batch this in chunks to avoid hitting max arg length issues.
for (const files of chunked(allFiles, 50)) {
const result = cp.spawnSync(
process.execPath,
["node_modules/dprint/bin.js", "check", "--list-different", ...files],
{ encoding: "utf8", maxBuffer: 100 * 1024 * 1024 },
);
// https://dprint.dev/cli/#exit-codes
switch (result.status) {
case 0:
case 14:
// No change or no files matched
break;
case 20:
for (const line of result.stdout.split(/\r?\n/)) {
if (line) {
unformatted.push(path.relative(process.cwd(), line));
}
}
break;
default:
dprintErrors.push(result.stderr.trim());
break;
}
}
if (dprintErrors.length > 0) {
fail("dprint failed to execute");
// Try and make sure no reasonable error could ever close the code block.
// You can open a code block with as many backticks as you want, so long as
// you close it with the same string. Inside of the code block, any lower
// number of backticks cannot close the block.
const codeBlock = "``````````";
const message = [
"## Formatting errors",
"",
codeBlock,
...dprintErrors.join("\n\n"),
codeBlock,
];
markdown(message.join("\n"));
} else if (unformatted.length > 0) {
const message = [
"## Formatting",
"",
];
message.push(
`The following files are not formatted:
1. ` + unformatted.slice(0, 5).join("\n1. "),
);
if (unformatted.length > 5) {
const extras = unformatted.slice(5);
message.push(`
<details>
<summary>as well as these ${extras.length} other files...</summary>
<p>${extras.join(", ")}</p>
</details>
`);
}
message.push("\nConsider running `pnpm dprint fmt` on these files to make review easier.");
markdown(message.join("\n"));
}