Skip to content

Commit

Permalink
fix: shut up eslint
Browse files Browse the repository at this point in the history
  • Loading branch information
FUDCo committed Apr 12, 2020
1 parent f55110e commit fcc1ff3
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/swingset-runner/src/kerneldump.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ function gap() {
p('');
}

/* eslint-disable no-use-before-define */
export function main() {
const argv = process.argv.splice(2);
let rawMode = false;
Expand Down Expand Up @@ -167,7 +168,7 @@ export function main() {
const end = `${baseKey}~`;
for (const key of subkeys) {
if (baseKey <= key && key < end) {
yield(key);
yield key;
}
}
}
Expand Down

0 comments on commit fcc1ff3

Please sign in to comment.