mirror of
https://github.com/MillironX/setup-nextflow.git
synced 2024-11-23 18:09:55 +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,
|
||||
"singleQuote": true,
|
||||
"trailingComma": "none",
|
||||
"bracketSpacing": false,
|
||||
"bracketSpacing": true,
|
||||
"arrowParens": "avoid"
|
||||
}
|
||||
|
|
|
@ -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 => {
|
||||
|
|
|
@ -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) => {
|
||||
|
|
Loading…
Reference in a new issue