We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 400059c commit 06b39f3Copy full SHA for 06b39f3
lib/command/check.js
@@ -92,7 +92,7 @@ module.exports = async function (options) {
92
if (!Object.keys(helpers).length) throw new Error('No helpers found')
93
// load helpers
94
for (const helper of Object.values(helpers)) {
95
- helper._init()
+ if (helper._init) helper._init()
96
}
97
checks.helpers = true
98
} catch (err) {
0 commit comments