feat(eslint): tame the beast

This commit is contained in:
Saúl Ibarra Corretgé
2018-10-02 15:03:23 +02:00
committed by Saúl Ibarra Corretgé
parent 4424c456a9
commit 2ae2f04f0a
6 changed files with 27 additions and 22 deletions

View File

@@ -112,7 +112,7 @@ function initCommands() {
const { name } = request;
switch (name) {
case 'invite': // eslint-disable-line no-case-declarations
case 'invite': {
const { invitees } = request;
if (!Array.isArray(invitees) || invitees.length === 0) {
@@ -143,6 +143,7 @@ function initCommands() {
});
});
break;
}
case 'is-audio-muted':
callback(APP.conference.isLocalAudioMuted());
break;