ci: enable code lint check (#186)

* ci: enable code lint check

* chore(deps): update and fix eslint & prettier versions
This commit is contained in:
Vojtech Simetka
2021-08-25 16:14:09 +02:00
committed by GitHub
parent 1f8f890ff7
commit 766fe96d1c
7 changed files with 546 additions and 256 deletions
+1 -1
View File
@@ -53,7 +53,7 @@ describe('utils', () => {
wrongValues.forEach(v => {
test(`testing ${v}`, () => {
// eslint-disable-next-line @typescript-eslint/no-explicit-any
expect(() => makeBigNumber((v as unknown) as any)).toThrow()
expect(() => makeBigNumber(v as unknown as any)).toThrow()
})
})
})