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 d71003e commit c43aa6dCopy full SHA for c43aa6d
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