Run prettier on language service

This commit is contained in:
Josh Gross
2022-11-15 14:08:12 -05:00
parent 85ee2f6bb0
commit 3a816b2a74
16 changed files with 139 additions and 231 deletions
+4 -4
View File
@@ -1,7 +1,7 @@
import { TraceWriter } from "@github/actions-workflow-parser/templates/trace-writer";
import {TraceWriter} from "@github/actions-workflow-parser/templates/trace-writer";
export const nullTrace: TraceWriter = {
info: (x) => {},
verbose: (x) => {},
error: (x) => {},
info: x => {},
verbose: x => {},
error: x => {}
};