Skip to content

Commit

Permalink
chore: lint bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
nytamin committed Nov 2, 2023
1 parent 36a5b95 commit 641876b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/core/src/lib.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ export function literal<T>(o: T): T {

export function describeEvent(event: string, args: any[]): string {
const metadataStr = (metadata: any) => {
if (typeof metadata == 'object') return `${metadata}`
if (typeof metadata !== 'object') return `${metadata}`
if (metadata === null) return 'null'

const strs: string[] = []
Expand Down
2 changes: 1 addition & 1 deletion yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -1598,7 +1598,7 @@
dependencies:
"@sinonjs/commons" "^1.7.0"

"@sofie-automation/code-standard-preset@~2.5.2":
"@sofie-automation/code-standard-preset@^2.5.2":
version "2.5.2"
resolved "https://registry.yarnpkg.com/@sofie-automation/code-standard-preset/-/code-standard-preset-2.5.2.tgz#468bd1c4c32be976431f50f76ff54329c2cfffe0"
integrity sha512-xzAMUp/FHvNwkMC2pl8isOVLcWUmoQ9Mw1FdiYwDSHyOkLmbJ/nwYrl6iWR/7LbkGk45RAKkbkfFyhsqTh4xzA==
Expand Down

0 comments on commit 641876b

Please sign in to comment.