Browse Source

[eslint] eol-last

dev1
Lyubo Marinov 8 years ago
parent
commit
71f1008994

+ 1
- 0
.eslintrc.js View File

147
         // Stylistic issues group
147
         // Stylistic issues group
148
         'brace-style': 2,
148
         'brace-style': 2,
149
         'comma-style': 2,
149
         'comma-style': 2,
150
+        'eol-last': 2,
150
         'func-names': 0,
151
         'func-names': 0,
151
         'func-style': 0,
152
         'func-style': 0,
152
         'id-blacklist': 0,
153
         'id-blacklist': 0,

+ 1
- 1
modules/xmpp/JingleSessionState.js View File

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

+ 1
- 1
modules/xmpp/SDPDiffer.js View File

178
     return modified;
178
     return modified;
179
 };
179
 };
180
 
180
 
181
-module.exports = SDPDiffer;
181
+module.exports = SDPDiffer;

+ 1
- 1
service/RTC/MediaType.js View File

6
 /**
6
 /**
7
  * The video type.
7
  * The video type.
8
  */
8
  */
9
-export const VIDEO = 'video';
9
+export const VIDEO = 'video';

+ 1
- 1
service/RTC/Resolutions.js View File

53
     }
53
     }
54
 };
54
 };
55
 
55
 
56
-module.exports = Resolutions;
56
+module.exports = Resolutions;

+ 1
- 1
service/RTC/StreamEventTypes.js View File

11
     TRACK_MUTE_CHANGED: 'rtc.track_mute_changed'
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 View File

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

Loading…
Cancel
Save