diff options
| author | Uri Shaked | 2026-02-14 19:25:24 +0200 |
|---|---|---|
| committer | Uri Shaked | 2026-02-14 19:25:24 +0200 |
| commit | 69589b07e47219b7673dc9919fb6fa3fcd0c4d54 (patch) | |
| tree | 50d34ab39b382c50695682ddd3ea5bfc7043ea8e /src/peripherals | |
| parent | chore: update all devDependencies (diff) | |
| download | avr8js-69589b07e47219b7673dc9919fb6fa3fcd0c4d54.tar.gz avr8js-69589b07e47219b7673dc9919fb6fa3fcd0c4d54.tar.bz2 avr8js-69589b07e47219b7673dc9919fb6fa3fcd0c4d54.zip | |
style: organize imports
Also remove unused eslint-disable directives
Diffstat (limited to '')
| -rw-r--r-- | src/peripherals/gpio.spec.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/peripherals/gpio.spec.ts b/src/peripherals/gpio.spec.ts index 40d4660..4927446 100644 --- a/src/peripherals/gpio.spec.ts +++ b/src/peripherals/gpio.spec.ts @@ -1,10 +1,10 @@ // SPDX-License-Identifier: MIT // Copyright (c) Uri Shaked and contributors +import { describe, expect, it, vi } from 'vitest'; import { CPU } from '../cpu/cpu'; import { asmProgram, TestProgramRunner } from '../utils/test-utils'; -import { AVRIOPort, portBConfig, PinState, portDConfig, PinOverrideMode } from './gpio'; -import { describe, it, expect, vi } from 'vitest'; +import { AVRIOPort, PinOverrideMode, PinState, portBConfig, portDConfig } from './gpio'; // CPU registers const SREG = 95; |
