Skip to content

Commit ab5ef91

Browse files
Jami CogswellJami Cogswell
authored andcommitted
Fix prettier formatting
1 parent 3030f6c commit ab5ef91

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

extensions/ql-vscode/src/variant-analysis/view-autofixes.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,9 @@ export async function viewAutofixesForVariantAnalysisResults(
122122
async function findLocalAutofix(): Promise<string> {
123123
const localAutofixPath = process.env.AUTOFIX_PATH;
124124
if (!localAutofixPath) {
125-
throw new Error("Path to local autofix installation not found. Internal GitHub access required.");
125+
throw new Error(
126+
"Path to local autofix installation not found. Internal GitHub access required.",
127+
);
126128
}
127129
if (!(await pathExists(localAutofixPath))) {
128130
throw new Error(`Local autofix path ${localAutofixPath} does not exist.`);

0 commit comments

Comments
 (0)