Procházet zdrojové kódy

fix(lint) fix all eslint warnings

factor2
Saúl Ibarra Corretgé před 4 roky
rodič
revize
c5920bb8a5

+ 5
- 3
react/features/base/tracks/reducer.js Zobrazit soubor

@@ -14,10 +14,12 @@ import {
14 14
 } from './actionTypes';
15 15
 
16 16
 /**
17
- * @typedef {Object} Track
18
- * @property {(JitsiLocalTrack|JitsiRemoteTrack)} [jitsiTrack] - The associated
17
+ * Track type.
18
+ *
19
+ * @typedef {object} Track
20
+ * @property {JitsiLocalTrack|JitsiRemoteTrack} jitsiTrack - The associated
19 21
  * {@code JitsiTrack} instance. Optional for local tracks if those are still
20
- * being created (i.e. {@code getUserMedia} is still in progress).
22
+ * being created (ie {@code getUserMedia} is still in progress).
21 23
  * @property {Promise} [gumProcess] - If a local track is still being created,
22 24
  * it will have no {@code JitsiTrack}, but a {@code gumProcess} set to a
23 25
  * {@code Promise} with and extra {@code cancel()}.

+ 6
- 3
react/features/remote-control/constants.js Zobrazit soubor

@@ -26,15 +26,18 @@ export const DISCO_REMOTE_CONTROL_FEATURE = 'http://jitsi.org/meet/remotecontrol
26 26
  * Supported by keydown and keyup types.
27 27
  * @property {PERMISSIONS_ACTIONS} action - Supported by type === permissions.
28 28
  * Represents the action related to the permissions event.
29
+ */
30
+
31
+/**
32
+ * Optional properties. Supported for permissions event for action === request.
29 33
  *
30
- * Optional properties. Supported for permissions event for action === request:
31 34
  * @property {string} userId - The user id of the participant that has sent the
32 35
  * request.
33 36
  * @property {string} userJID - The full JID in the MUC of the user that has
34 37
  * sent the request.
35
- * @property {string} displayName - the displayName of the participant that has
38
+ * @property {string} displayName - The displayName of the participant that has
36 39
  * sent the request.
37
- * @property {boolean} screenSharing - true if the SS is started for the local
40
+ * @property {boolean} screenSharing - True if the SS is started for the local
38 41
  * participant and false if not.
39 42
  */
40 43
 

+ 1
- 1
react/features/speaker-stats/components/web/SpeakerStats.js Zobrazit soubor

@@ -20,7 +20,7 @@ type Props = {
20 20
 
21 21
     /**
22 22
      * The flag which shows if the facial recognition is enabled, obtained from the redux store.
23
-     * if enabled facial expressions are shown.
23
+     * If enabled facial expressions are shown.
24 24
      */
25 25
     _showFacialExpressions: boolean,
26 26
 

+ 1
- 1
react/features/virtual-background/actions.js Zobrazit soubor

@@ -77,7 +77,7 @@ export function backgroundEnabled(backgroundEffectEnabled: boolean) {
77 77
  *
78 78
  * @returns {{
79 79
  *    type: VIRTUAL_BACKGROUND_TRACK_CHANGED
80
- *}}.
80
+ * }}
81 81
  */
82 82
 export function virtualBackgroundTrackChanged() {
83 83
     return {

Načítá se…
Zrušit
Uložit