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 4319306 commit c6916ffCopy full SHA for c6916ff
src/autofix/autofix.ts
@@ -182,6 +182,7 @@ export default async function ({
182
const message = `Syntax error after applying autofix for '${resourcePath}': ` +
183
jsErrors.map((d) => d.messageText as string).join(", ");
184
log.verbose(message);
185
+ log.verbose(resourcePath + ":\n" + newContent);
186
context.addLintingMessage(resourcePath, MESSAGE.PARSING_ERROR, {message});
187
} else {
188
res.set(resourcePath, newContent);
0 commit comments