Skip to content

Commit c6262cc

Browse files
committed
style(timer): remove redundant eslint directive
1 parent abf7d47 commit c6262cc

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

src/peripherals/timer.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,10 @@ const INTE = 0x38;
1818
const INTF = 0x3c;
1919
const INTS = 0x40;
2020

21-
/* eslint-disable @typescript-eslint/no-unused-vars */
2221
const ALARM_0 = 1 << 0;
2322
const ALARM_1 = 1 << 1;
2423
const ALARM_2 = 1 << 2;
2524
const ALARM_3 = 1 << 3;
26-
/* eslint-enable @typescript-eslint/no-unused-vars */
2725

2826
const timerInterrupts = [IRQ.TIMER_0, IRQ.TIMER_1, IRQ.TIMER_2, IRQ.TIMER_3];
2927

0 commit comments

Comments
 (0)