Skip to content

Commit 44af094

Browse files
authored
Adds a danger rule for when you keep the username from the template (DefinitelyTyped#45364)
1 parent d886755 commit 44af094

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

dangerfile.ts

+8
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,14 @@ if (danger.git.created_files.some(f => path.basename(f) === ".editorconfig")) {
5858
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)
5959
}
6060

61+
// Tell people that they've added @me to their lib and not themselves
62+
const newDTSFiles = danger.git.created_files.filter(f => f.endsWith(".d.ts"))
63+
newDTSFiles.forEach(dts => {
64+
const file = fs.readFileSync(dts, "utf8")
65+
if (file.includes("<https://github.com/me>")) {
66+
fail("This line should have your github username in it, not /me", dts, 3)
67+
}
68+
})
6169

6270
for (const filename of danger.git.modified_files.concat(danger.git.created_files)) {
6371
danger.git.diffForFile(filename).then(d => {

0 commit comments

Comments
 (0)