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 df782c5 commit af774ebCopy full SHA for af774eb
.prettierrc.json
@@ -5,6 +5,6 @@
5
"semi": true,
6
"singleQuote": false,
7
"trailingComma": "none",
8
- "bracketSpacing": false,
+ "bracketSpacing": true,
9
"arrowParens": "avoid"
10
}
__tests__/main.test.ts
@@ -1,4 +1,4 @@
1
-import {wait} from "../src/wait";
+import { wait } from "../src/wait";
2
import * as process from "process";
3
import * as cp from "child_process";
4
import * as path from "path";
src/main.ts
@@ -1,5 +1,5 @@
import * as core from "@actions/core";
-import {wait} from "./wait";
+import { wait } from "./wait";
async function run(): Promise<void> {
try {
0 commit comments