Explorar el Código

[eslint] eol-last

master
Lyubo Marinov hace 8 años
padre
commit
71f1008994

+ 1
- 0
.eslintrc.js Ver fichero

@@ -147,6 +147,7 @@ module.exports = {
147 147
         // Stylistic issues group
148 148
         'brace-style': 2,
149 149
         'comma-style': 2,
150
+        'eol-last': 2,
150 151
         'func-names': 0,
151 152
         'func-style': 0,
152 153
         'id-blacklist': 0,

+ 1
- 1
modules/xmpp/JingleSessionState.js Ver fichero

@@ -19,4 +19,4 @@ export const ACTIVE = 'active';
19 19
  * (after 'session-terminate').
20 20
  * @type {string}
21 21
  */
22
-export const ENDED = 'ended';
22
+export const ENDED = 'ended';

+ 1
- 1
modules/xmpp/SDPDiffer.js Ver fichero

@@ -178,4 +178,4 @@ SDPDiffer.prototype.toJingle = function(modify) {
178 178
     return modified;
179 179
 };
180 180
 
181
-module.exports = SDPDiffer;
181
+module.exports = SDPDiffer;

+ 1
- 1
service/RTC/MediaType.js Ver fichero

@@ -6,4 +6,4 @@ export const AUDIO = 'audio';
6 6
 /**
7 7
  * The video type.
8 8
  */
9
-export const VIDEO = 'video';
9
+export const VIDEO = 'video';

+ 1
- 1
service/RTC/Resolutions.js Ver fichero

@@ -53,4 +53,4 @@ const Resolutions = {
53 53
     }
54 54
 };
55 55
 
56
-module.exports = Resolutions;
56
+module.exports = Resolutions;

+ 1
- 1
service/RTC/StreamEventTypes.js Ver fichero

@@ -11,4 +11,4 @@ const StreamEventTypes = {
11 11
     TRACK_MUTE_CHANGED: 'rtc.track_mute_changed'
12 12
 };
13 13
 
14
-module.exports = StreamEventTypes;
14
+module.exports = StreamEventTypes;

+ 1
- 1
service/statistics/constants.js Ver fichero

@@ -2,4 +2,4 @@ const Constants = {
2 2
     LOCAL_JID: 'local'
3 3
 };
4 4
 
5
-module.exports = Constants;
5
+module.exports = Constants;

Loading…
Cancelar
Guardar