Skip to content

Commit

Permalink
chore: fix import ordering
Browse files Browse the repository at this point in the history
  • Loading branch information
mikerourke committed Jan 7, 2025
1 parent bf8b695 commit b5da347
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
"ci": "biome ci src",
"docs:generate": "typedoc --options typedoc.json",
"docs:serve": "mkdir -p ./site && cd ./site && bunx vite",
"format": "biome format --write src",
"format": "biome check --formatter-enabled=true --linter-enabled=false --organize-imports-enabled=true --write src",
"format:tests": "bunx prettier \"src/**/*.test.ts\" --write --print-width 100",
"lint": "biome lint src",
"test": "bun test",
Expand Down
6 changes: 3 additions & 3 deletions src/getChordDisplay.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@ import {
tokensDisplayTable,
} from "./tables.ts";
import {
Modifier,
MouseButton,
type MouseEventButton,
type Chord,
type ChordedEvent,
type Key,
Modifier,
MouseButton,
type MouseEventButton,
type Token,
} from "./types.ts";

Expand Down
4 changes: 2 additions & 2 deletions src/isChordPressed.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@ import { isPlatform } from "@laserware/arcade";
import { getKeyForLookup, hasTokenInChord, stripToken } from "./common.ts";
import { eventKeyByKeyEnumTable } from "./tables.ts";
import {
type Chord,
type ChordedEvent,
Modifier,
MouseButton,
MouseEventButton,
type Chord,
type ChordedEvent,
} from "./types.ts";

/**
Expand Down
4 changes: 2 additions & 2 deletions src/tables.ts
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
import { isPlatform } from "@laserware/arcade";

import {
type Chord,
Key,
type KeyModifierState,
Modifier,
MouseButton,
MouseEventButton,
type Chord,
type KeyModifierState,
} from "./types.ts";

/**
Expand Down

0 comments on commit b5da347

Please sign in to comment.