style: Set bracketSpacing to true

This commit is contained in:
Edmund Miller 2022-11-13 20:29:05 -06:00 committed by Thomas A. Christensen II
parent 7c79f790e0
commit 981cd4fc2e
6 changed files with 24 additions and 18 deletions

View file

@ -5,6 +5,6 @@
"semi": false,
"singleQuote": true,
"trailingComma": "none",
"bracketSpacing": false,
"bracketSpacing": true,
"arrowParens": "avoid"
}

View file

@ -12,7 +12,10 @@ const test = anyTest as TestFn<{
test.before(t => {
const first = true
const current_token = getToken(first)
t.context = {token: current_token, octokit: github.getOctokit(current_token)}
t.context = {
token: current_token,
octokit: github.getOctokit(current_token)
}
})
test('all_nf_releases', async t => {

View file

@ -12,7 +12,10 @@ const test = anyTest as TestFn<{
test.before(t => {
const first = true
const current_token = getToken(first)
t.context = {token: current_token, octokit: github.getOctokit(current_token)}
t.context = {
token: current_token,
octokit: github.getOctokit(current_token)
}
})
const macro = test.macro(async (t, version: string, expected: string) => {