Skip to content

Commit a873605

Browse files
committed
chore: linting
1 parent 9010521 commit a873605

File tree

6 files changed

+6
-3
lines changed

6 files changed

+6
-3
lines changed

packages/utils/src/test-utils/getForcProject.test.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
import * as fs from 'fs';
22
import * as path from 'path';
3+
34
import * as utilsMod from '../index';
45

56
import {

packages/utils/src/test-utils/getForcProject.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
import { hexlify } from '../index';
21
import { existsSync, readFileSync } from 'fs';
32
import { join } from 'path';
43

4+
import { hexlify } from '../index';
55
import { normalizeString } from '../utils/normalizeString';
66

77
interface IGetForcProjectParams {

packages/utils/src/utils/chunkAndPadBytes.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { arrayify } from '@fuel-ts/utils';
1+
import { arrayify } from '../index';
22

33
import { chunkAndPadBytes } from './chunkAndPadBytes';
44

packages/utils/src/utils/concat.test.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
import { arrayify } from './arrayify';
2-
32
import { concat, concatBytes } from './concat';
43

54
/**

packages/utils/src/utils/concat.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import type { BytesLike } from '@fuel-ts/interfaces';
2+
23
import { arrayify } from './arrayify';
34

45
/**

packages/utils/src/utils/hexlify.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
import type { BytesLike } from '@fuel-ts/interfaces';
2+
23
import { arrayify } from './arrayify';
4+
35
const HexCharacters: string = '0123456789abcdef';
46

57
/**

0 commit comments

Comments
 (0)