Skip to content

Commit a3dbce9

Browse files
committed
fix lint
1 parent b887174 commit a3dbce9

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

test/util.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { RequestError, Transloadit } from '../src/Transloadit'
1+
import { RequestError, Transloadit } from '../src/Transloadit.js'
22

33
// eslint-disable-next-line import/prefer-default-export
44
export const createProxy = (transloaditInstance: Transloadit) => {
@@ -7,6 +7,7 @@ export const createProxy = (transloaditInstance: Transloadit) => {
77
// @ts-expect-error I dunno how to type
88
const origMethod = target[propKey]
99
if (typeof origMethod === 'function') {
10+
// eslint-disable-next-line func-names
1011
return function (...args: any) {
1112
const result = origMethod.apply(target, args)
1213

0 commit comments

Comments
 (0)