We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 925d09a commit 6e74a71Copy full SHA for 6e74a71
1 file changed
scripts/validate-commits.ts
@@ -73,7 +73,7 @@ export default function (argv: ValidateCommitsOptions, logger: logging.Logger) {
73
}
74
75
for (const [sha, message] of commits) {
76
- if (blacklist.find(i => i.startsWith(sha)) !== -1) {
+ if (blacklist.find(i => i.startsWith(sha))) {
77
// Some commits are better ignored.
78
continue;
79
0 commit comments