Open
Description
My version of scss-lint returns nothing when there aren't problems. This makes the line resolve([JSON.parse(report)]);
to through an exception.
I have modified the line by
if (typeof report !== 'undefined') {
resolve([JSON.parse(report)]);
} else {
// console.log("(JBD) report undefined");
resolve([JSON.parse('{}')]);
}
And now it works well
Metadata
Metadata
Assignees
Labels
No labels