mirror of
https://github.com/MillironX/setup-nextflow.git
synced 2024-11-22 01:46:04 +00:00
style: Set bracketSpacing to true
This commit is contained in:
parent
7c79f790e0
commit
981cd4fc2e
6 changed files with 24 additions and 18 deletions
|
@ -5,6 +5,6 @@
|
||||||
"semi": false,
|
"semi": false,
|
||||||
"singleQuote": true,
|
"singleQuote": true,
|
||||||
"trailingComma": "none",
|
"trailingComma": "none",
|
||||||
"bracketSpacing": false,
|
"bracketSpacing": true,
|
||||||
"arrowParens": "avoid"
|
"arrowParens": "avoid"
|
||||||
}
|
}
|
||||||
|
|
|
@ -12,7 +12,10 @@ const test = anyTest as TestFn<{
|
||||||
test.before(t => {
|
test.before(t => {
|
||||||
const first = true
|
const first = true
|
||||||
const current_token = getToken(first)
|
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 => {
|
test('all_nf_releases', async t => {
|
||||||
|
|
|
@ -12,7 +12,10 @@ const test = anyTest as TestFn<{
|
||||||
test.before(t => {
|
test.before(t => {
|
||||||
const first = true
|
const first = true
|
||||||
const current_token = getToken(first)
|
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) => {
|
const macro = test.macro(async (t, version: string, expected: string) => {
|
||||||
|
|
Loading…
Reference in a new issue