fix(): eslint setup

This commit is contained in:
tiagosiebler
2024-11-08 13:04:41 +00:00
parent f685dc1bf7
commit 7023b0aa75
6 changed files with 106 additions and 91 deletions

View File

@@ -47,7 +47,7 @@ export function successEmptyResponseObjectV3() {
export function errorResponseObject(
result: null | any = null,
ret_code: number,
ret_msg: string
ret_msg: string,
) {
return {
result,
@@ -58,7 +58,7 @@ export function errorResponseObject(
export function errorResponseObjectV3(
result: null | any = null,
retCode: number
retCode: number,
) {
return {
result,

View File

@@ -1,6 +1,6 @@
import { API_ERROR_CODE, RestClientV5 } from '../../src';
import { successResponseObjectV3 } from '../response.util';
import { getTestProxy } from '../proxy.util';
import { successResponseObjectV3 } from '../response.util';
describe('Private READ V5 REST API Endpoints', () => {
const API_KEY = process.env.API_KEY_COM;