Skip to content

Commit af774eb

Browse files
committed
Add bracket spacing rule
1 parent df782c5 commit af774eb

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.prettierrc.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@
55
"semi": true,
66
"singleQuote": false,
77
"trailingComma": "none",
8-
"bracketSpacing": false,
8+
"bracketSpacing": true,
99
"arrowParens": "avoid"
1010
}

__tests__/main.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import {wait} from "../src/wait";
1+
import { wait } from "../src/wait";
22
import * as process from "process";
33
import * as cp from "child_process";
44
import * as path from "path";

src/main.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import * as core from "@actions/core";
2-
import {wait} from "./wait";
2+
import { wait } from "./wait";
33

44
async function run(): Promise<void> {
55
try {

0 commit comments

Comments
 (0)