Skip to content

scss-lint returns undefined when there aren't errors in files #90

Open
@brossaip

Description

@brossaip

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

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions