Skip to content

Commit

Permalink
Make linter happy
Browse files Browse the repository at this point in the history
  • Loading branch information
sergeuz committed Aug 7, 2023
1 parent 1e4ee1a commit 49009a1
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions test/support/fake-usb.js
Original file line number Diff line number Diff line change
Expand Up @@ -359,7 +359,7 @@ class DfuClass {
throw new UsbError('Unknown bRequest');
}
}
break;
break; // eslint-disable-line
}

case 0x80: { // Direction: device-to-host; type: standard; recipient: device
Expand Down Expand Up @@ -390,19 +390,19 @@ class DfuClass {
throw new UsbError('Unknown index of string descriptor');
}
}
break;
break; // eslint-disable-line
}
default: {
throw new UsbError('Unknown descriptor type');
}
}
break;
break; // eslint-disable-line
}
default: {
throw new UsbError('Unknown bRequest');
}
}
break;
break; // eslint-disable-line
}

default: {
Expand Down

0 comments on commit 49009a1

Please sign in to comment.