Skip to content

Commit e939067

Browse files
committed
chore: fix meteor-lib linter errors
1 parent 0260751 commit e939067

File tree

2 files changed

+1
-1
lines changed

2 files changed

+1
-1
lines changed

packages/meteor-lib/src/__tests__/time.spec.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ test('formatDateTime', () => {
44
expect(formatDateTime(1556194064374)).toMatch(/2019-04-\d{2} \d{2}:\d{2}:\d{2}/)
55
})
66

7+
// eslint-disable-next-line jest/no-commented-out-tests
78
// test('formatDateTime2', () => {
89
// if (process.platform === 'win32') {
910
// // Due to a bug in how timezones are handled in Windows & Node, we just have to skip these tests when running tests locally..

packages/meteor-lib/src/triggers/actionFactory.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,6 @@ import { assertNever } from '@sofie-automation/corelib/dist/lib'
3232

3333
// as described in this issue: https://github.com/Microsoft/TypeScript/issues/14094
3434
type Without<T, U> = { [P in Exclude<keyof T, keyof U>]?: never }
35-
// eslint-disable-next-line @typescript-eslint/ban-types
3635
type XOR<T, U> = T | U extends object ? (Without<T, U> & U) | (Without<U, T> & T) : T | U
3736

3837
export interface ReactivePlaylistActionContext {

0 commit comments

Comments
 (0)