Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: update code standard preset #1379

Closed
Closed
Changes from 1 commit
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
e188223
chore: update code-preset and configs
Julusian Jan 20, 2025
25f43fe
chore: prettier format
Julusian Jan 28, 2025
12b81d5
chore: update job-worker imports to be full path with extensions
Julusian Jan 28, 2025
893b892
chore: update blueprint-integration imports to be full path with exte…
Julusian Jan 28, 2025
955c349
chore: update corelib imports to be full path with extensions
Julusian Jan 28, 2025
514c89e
chore: update live-status-gateway imports to be full path with extens…
Julusian Jan 28, 2025
dc70421
chore: update meteor-lib imports to be full path with extensions
Julusian Jan 28, 2025
6419f15
chore: update mos-gateway imports to be full path with extensions
Julusian Jan 28, 2025
f8bc615
chore: update openapi imports to be full path with extensions
Julusian Jan 28, 2025
58e364a
chore: update playout-gateway imports to be full path with extensions
Julusian Jan 28, 2025
ffe9fa4
chore: update server-core-integration imports to be full path with ex…
Julusian Jan 28, 2025
929225d
chore: update shared-lib imports to be full path with extensions
Julusian Jan 28, 2025
f8e0a4c
chore: update meteor imports to be full path with extensions
Julusian Jan 28, 2025
8690842
chore: fix shared-lib linter errors
Julusian Jan 28, 2025
c0570c4
chore: fix blueprints-integration linter errors
Julusian Jan 28, 2025
4655468
chore: fix some underscore imports
Julusian Jan 28, 2025
1b6d050
chore: update fast-clone imports
Julusian Jan 28, 2025
6101c4d
chore: fix corelib linter errors
Julusian Jan 28, 2025
eb6bdd5
chore: fix meteor-lib linter errors
Julusian Jan 28, 2025
ef4134f
chore: make UserError extend Error
Julusian Jan 27, 2025
61cb071
chore: fix meteor-lib type errors
Julusian Jan 28, 2025
0fe62ae
chore: fix server-core-integration linter errors
Julusian Jan 29, 2025
d9eb94f
chore: fix playout-gateway linter errors
Julusian Jan 29, 2025
ea3578c
chore: fix mos-gatway linter errors
Julusian Jan 29, 2025
945e542
chore: fix openapi linter errors
Julusian Jan 29, 2025
8b2dd19
chore: fix live-status-gateway lint
Julusian Jan 29, 2025
9dadcb0
chore: update webui imports to be full path with extensions
Julusian Jan 29, 2025
8cdec08
chore: fix job-worker linter/type errors
Julusian Jan 29, 2025
6096a73
chore: fix meteor linter errors
Julusian Jan 29, 2025
3e94ed0
chore: fix webui build
Julusian Jan 29, 2025
7e5e899
chore: fix tests
Julusian Jan 29, 2025
1ebc2d1
chore: fix meteor linter errors
Julusian Jan 29, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
chore: fix openapi linter errors
Julusian committed Feb 4, 2025

Verified

This commit was signed with the committer’s verified signature.
Julusian Julian Waller
commit 945e542bcb44d11134836204d15c911d8b6159bb
2 changes: 1 addition & 1 deletion packages/openapi/index.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
export * from './client/ts'
export * from './client/ts/index.js'
export const API_VERSION = 'v1.0'
1 change: 1 addition & 0 deletions packages/openapi/run_server_tests.mjs
Original file line number Diff line number Diff line change
@@ -8,6 +8,7 @@ import { exec } from 'child_process'
import { exit } from 'process'
import { join } from 'path'
import { createServer } from 'http'
// eslint-disable-next-line n/no-missing-import
import { expressAppConfig } from './server/node_modules/oas3-tools/dist/index.js'

const testTimeout = 120000
7 changes: 3 additions & 4 deletions packages/openapi/src/checkServer.ts
Original file line number Diff line number Diff line change
@@ -13,10 +13,9 @@ export async function checkServer(config: Configuration): Promise<void> {
try {
await sofieApi.index() // Throws an error if API is not available
return
} catch (
err
// eslint-disable-next-line no-empty
) {}
} catch (_err) {
// Ignore
}
await wait(1000)
}