feat: include sort members eslint changes

This commit is contained in:
Bogdan Duduman
2022-09-27 10:10:28 +03:00
committed by Saúl Ibarra Corretgé
parent 1106a86ba7
commit 48db099134
255 changed files with 520 additions and 519 deletions

View File

@@ -1,10 +1,10 @@
import {
BOO_SOUND_FILES,
CLAP_SOUND_FILES,
LAUGH_SOUND_FILES,
LIKE_SOUND_FILES,
BOO_SOUND_FILES,
SURPRISE_SOUND_FILES,
SILENCE_SOUND_FILES
SILENCE_SOUND_FILES,
SURPRISE_SOUND_FILES
} from './sounds';
/**

View File

@@ -3,12 +3,12 @@ import { v4 as uuidv4 } from 'uuid';
import { IState } from '../app/types';
// @ts-ignore
import { getFeatureFlag, REACTIONS_ENABLED } from '../base/flags';
import { REACTIONS_ENABLED, getFeatureFlag } from '../base/flags';
import { getLocalParticipant } from '../base/participants/functions';
// @ts-ignore
import { extractFqnFromPath } from '../dynamic-branding/functions.any';
import { ReactionEmojiProps, REACTIONS, ReactionThreshold, SOUNDS_THRESHOLDS } from './constants';
import { REACTIONS, ReactionEmojiProps, ReactionThreshold, SOUNDS_THRESHOLDS } from './constants';
import logger from './logger';
/**

View File

@@ -30,8 +30,8 @@ import { NOTIFICATION_TIMEOUT_TYPE, showNotification } from '../notifications';
import {
ADD_REACTION_BUFFER,
FLUSH_REACTION_BUFFER,
SEND_REACTIONS,
PUSH_REACTIONS,
SEND_REACTIONS,
SHOW_SOUNDS_NOTIFICATION
} from './actionTypes';
import {
@@ -44,12 +44,12 @@ import {
import { displayReactionSoundsNotification } from './actions.web';
import {
ENDPOINT_REACTION_NAME,
MUTE_REACTIONS_COMMAND,
MuteCommandAttributes,
RAISE_HAND_SOUND_ID,
REACTIONS,
REACTION_SOUND,
SOUNDS_THRESHOLDS,
MUTE_REACTIONS_COMMAND,
MuteCommandAttributes
SOUNDS_THRESHOLDS
} from './constants';
import {
getReactionMessageFromBuffer,

View File

@@ -1,11 +1,11 @@
import ReducerRegistry from '../base/redux/ReducerRegistry';
import {
TOGGLE_REACTIONS_VISIBLE,
SET_REACTION_QUEUE,
ADD_REACTION_BUFFER,
FLUSH_REACTION_BUFFER,
SHOW_SOUNDS_NOTIFICATION
SET_REACTION_QUEUE,
SHOW_SOUNDS_NOTIFICATION,
TOGGLE_REACTIONS_VISIBLE
} from './actionTypes';
import { ReactionEmojiProps } from './constants';