Skip to content

Commit

Permalink
style(timer): remove redundant eslint directive
Browse files Browse the repository at this point in the history
  • Loading branch information
urish committed Aug 7, 2021
1 parent abf7d47 commit c6262cc
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/peripherals/timer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,10 @@ const INTE = 0x38;
const INTF = 0x3c;
const INTS = 0x40;

/* eslint-disable @typescript-eslint/no-unused-vars */
const ALARM_0 = 1 << 0;
const ALARM_1 = 1 << 1;
const ALARM_2 = 1 << 2;
const ALARM_3 = 1 << 3;
/* eslint-enable @typescript-eslint/no-unused-vars */

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

Expand Down

0 comments on commit c6262cc

Please sign in to comment.