Skip to content

Commit

Permalink
chore: format
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Nov 6, 2023
1 parent 666f677 commit 97790e1
Show file tree
Hide file tree
Showing 9 changed files with 17 additions and 33 deletions.
6 changes: 2 additions & 4 deletions packages/ghost/app/build.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
import { Ghost } from '@/types/Ghost.js'

export const build: Ghost = {
worker: async () => {
},
action: async () => {
}
worker: async () => {},
action: async () => {}
}
6 changes: 2 additions & 4 deletions packages/ghost/app/closer.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
import { Ghost } from '@/types/Ghost.js'

export const closer: Ghost = {
worker: async () => {
},
action: async () => {
}
worker: async () => {},
action: async () => {}
}
6 changes: 2 additions & 4 deletions packages/ghost/app/deploy.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
import { Ghost } from '@/types/Ghost.js'

export const deploy: Ghost = {
worker: async () => {
},
action: async () => {
}
worker: async () => {},
action: async () => {}
}
6 changes: 2 additions & 4 deletions packages/ghost/app/docs.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
import { Ghost } from '@/types/Ghost.js'

export const docs: Ghost = {
worker: async () => {
},
action: async () => {
}
worker: async () => {},
action: async () => {}
}
6 changes: 2 additions & 4 deletions packages/ghost/app/format.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
import { Ghost } from '@/types/Ghost.js'

export const format: Ghost = {
worker: async () => {
},
action: async () => {
}
worker: async () => {},
action: async () => {}
}
6 changes: 2 additions & 4 deletions packages/ghost/app/lint.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
import { Ghost } from '@/types/Ghost.js'

export const lint: Ghost = {
worker: async () => {
},
action: async () => {
}
worker: async () => {},
action: async () => {}
}
6 changes: 2 additions & 4 deletions packages/ghost/app/merge.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
import { Ghost } from '@/types/Ghost.js'

export const merge: Ghost = {
worker: async () => {
},
action: async () => {
}
worker: async () => {},
action: async () => {}
}
6 changes: 2 additions & 4 deletions packages/ghost/app/release.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
import { Ghost } from '@/types/Ghost.js'

export const release: Ghost = {
worker: async (context) => {
},
action: async (data) => {
}
worker: async (context) => {},
action: async (data) => {}
}
2 changes: 1 addition & 1 deletion packages/ghost/utils/index.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ import { test, expect } from 'vitest'

test('placeholder', () => {
expect(1 + 2).toBe(3)
})
})

0 comments on commit 97790e1

Please sign in to comment.