You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
The text was updated successfully, but these errors were encountered:
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
The text was updated successfully, but these errors were encountered: