Add eslint-plugin-github
and fix issues (#29201)
This plugin has a few useful rules. The only thing I dislike about it is that it pulls in a rather big number of dependencies for react-related rules we don't use, but it can't really be avoided. Rule docs: https://github.com/github/eslint-plugin-github?tab=readme-ov-file#rules
This commit is contained in:
parent
d8d4b33b31
commit
26b17537e6
9 changed files with 1026 additions and 38 deletions
|
@ -79,4 +79,8 @@ async function main() {
|
|||
]);
|
||||
}
|
||||
|
||||
main().then(exit).catch(exit);
|
||||
try {
|
||||
exit(await main());
|
||||
} catch (err) {
|
||||
exit(err);
|
||||
}
|
||||
|
|
|
@ -63,4 +63,8 @@ async function main() {
|
|||
]);
|
||||
}
|
||||
|
||||
main().then(exit).catch(exit);
|
||||
try {
|
||||
exit(await main());
|
||||
} catch (err) {
|
||||
exit(err);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue