Skip to content

Commit

Permalink
Fix linting
Browse files Browse the repository at this point in the history
  • Loading branch information
ehmicky committed Oct 31, 2024
1 parent c2f3731 commit 7342fd4
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion benchmark/tasks.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// eslint-disable-next-line no-shadow
import { Buffer, Blob } from 'node:buffer'
import { Blob, Buffer } from 'node:buffer'

import { getNodeByteLength } from '../src/buffer.js'
import { getCharCodeByteLength } from '../src/char_code.js'
Expand Down
2 changes: 1 addition & 1 deletion src/helpers/strings.test.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { TEXT_ENCODER_MIN_LENGTH, CACHE_MAX_MEMORY } from '../encoder.js'
import { CACHE_MAX_MEMORY, TEXT_ENCODER_MIN_LENGTH } from '../encoder.js'

// All characters being tested
const CHARACTERS = [
Expand Down
2 changes: 1 addition & 1 deletion src/main.test-d.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { expectType, expectNotType } from 'tsd'
import { expectNotType, expectType } from 'tsd'

import stringByteLength from 'string-byte-length'

Expand Down

0 comments on commit 7342fd4

Please sign in to comment.