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 1b383c6 commit 0a0cf36
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/main.test-d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import nodeVersionAlias, {
type Options,
type SemverVersion,
} from 'node-version-alias'
import { expectType, expectAssignable, expectNotAssignable } from 'tsd'
import { expectAssignable, expectNotAssignable, expectType } from 'tsd'

expectType<SemverVersion>(await nodeVersionAlias('alias'))
// @ts-expect-error
Expand Down
2 changes: 1 addition & 1 deletion src/main.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ import nodeVersionAlias from 'node-version-alias'

import {
FULL_VERSION,
MAJOR_VERSION,
MAJOR_FULL_VERSION,
MAJOR_VERSION,
UNKNOWN_VERSION,
} from './helpers/versions.test.js'

Expand Down
4 changes: 2 additions & 2 deletions src/nvm.test.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { execFile } from 'node:child_process'
import { createWriteStream } from 'node:fs'
import { readFile, writeFile, unlink } from 'node:fs/promises'
import { join, dirname } from 'node:path'
import { readFile, unlink, writeFile } from 'node:fs/promises'
import { dirname, join } from 'node:path'
import { env, version as processVersion } from 'node:process'
import { pipeline } from 'node:stream/promises'
import { fileURLToPath } from 'node:url'
Expand Down

0 comments on commit 0a0cf36

Please sign in to comment.