Skip to content

Commit 122bcf1

Browse files
chore(lint): disable falsy error in travis
1 parent b8b5f23 commit 122bcf1

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/helpers/base64.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ export function getBase64String (display: BlockcertsV3Display): string {
88
if (display.contentEncoding !== 'base64') {
99
return '';
1010
}
11+
// eslint error on Travis only, https://app.travis-ci.com/github/blockchain-certificates/blockcerts-verifier/jobs/596641040
12+
// eslint-disable-next-line @typescript-eslint/restrict-template-expressions
1113
return `data:${display.contentMediaType};${display.contentEncoding},${display.content}`;
1214
}
1315

0 commit comments

Comments
 (0)