Skip to content

Commit

Permalink
Biome tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
iwoplaza committed Sep 8, 2024
1 parent 2f8e7cf commit 3a28d43
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions packages/typed-binary/src/structure/typedArray.ts
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
import {
type IMeasurer,
type ISerialInput,
type ISerialOutput,
type IMeasurer,
Measurer,
} from '../io';
import type { MutableBufferView } from '../io/types';
import type { Parsed } from '../utilityTypes';
import { Schema, type MaxValue } from './types';
import { type MaxValue, Schema } from './types';

type TypedArrayConstructor<T> = {
readonly BYTES_PER_ELEMENT: number;
Expand Down
8 changes: 4 additions & 4 deletions packages/typed-binary/src/test/typedArray.test.ts
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
import { describe, it, expect } from 'vitest';
import { describe, expect, it } from 'vitest';
import {
f32Array,
f64Array,
i8Array,
i16Array,
i32Array,
i8Array,
u16Array,
u32Array,
u8Array,
u8ClampedArray,
u16Array,
u32Array,
} from '../describe';
import { encodeAndDecode } from './helpers/mock';

Expand Down

0 comments on commit 3a28d43

Please sign in to comment.