Closed
Description
final cssOutput = sass.compileStringAsync(
await buildStep.readAsString(inputId),
importers: [new BuildImporter(buildStep)],
style: _getValidOutputStyle());
You can see the signature of compileStringAsync()
at the link below. It is async and not being awaited but the lint does not give any feedback about it.