Skip to content
This repository was archived by the owner on May 13, 2024. It is now read-only.

Commit 9bcb09e

Browse files
fippoKaptenJansson
authored andcommitted
all: remove references to jshint and jscs (#241)
1 parent 191ddf3 commit 9bcb09e

File tree

6 files changed

+3
-16
lines changed

6 files changed

+3
-16
lines changed

src/js/call.js

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -268,10 +268,6 @@ Call.fetchTurnConfig_ = function(onSuccess, onError) {
268268
xhr.onreadystatechange = onResult;
269269
// API_KEY and TURN_URL is replaced with API_KEY environment variable via
270270
// Gruntfile.js during build time by uglifyJS.
271-
// jscs:disable
272-
/* jshint ignore:start */
273271
xhr.open('POST', TURN_URL + API_KEY, true);
274-
// jscs:enable
275-
/* jshint ignore:end */
276272
xhr.send();
277273
};

src/js/main.js

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,8 @@
55
* that can be found in the LICENSE file in the root of the source
66
* tree.
77
*/
8-
9-
/* More information about these options at jshint.com/docs/options */
10-
/* exported addExplicitTest, addTest, audioContext */
118
'use strict';
9+
/* exported addExplicitTest, addTest, audioContext */
1210

1311
// Global WebAudio context that can be shared by all tests.
1412
// There is a very finite number of WebAudio contexts.

src/js/ssim.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,6 @@
55
* that can be found in the LICENSE file in the root of the source
66
* tree.
77
*/
8-
9-
/* More information about these options at jshint.com/docs/options */
108
'use strict';
119

1210
/* This is an implementation of the algorithm for calculating the Structural

src/js/videoframechecker.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,8 @@
55
* that can be found in the LICENSE file in the root of the source
66
* tree.
77
*/
8-
9-
/* More information about these options at jshint.com/docs/options */
108
'use strict';
9+
1110
function VideoFrameChecker(videoElement) {
1211
this.frameStats = {
1312
numFrozenFrames: 0,

test/run-tests.js

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,6 @@
55
* that can be found in the LICENSE file in the root of the source
66
* tree.
77
*/
8-
/* jshint node: true */
9-
/* globals require */
10-
118
'use strict';
129
var test = require('tape');
1310

test/sanity-test.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,10 @@
55
* that can be found in the LICENSE file in the root of the source
66
* tree.
77
*/
8-
98
'use strict';
9+
1010
// This is a basic test file for use with testling.
1111
// The test script language comes from tape.
12-
/* jshint node: true */
1312
var test = require('tape');
1413

1514
var webdriver = require('selenium-webdriver');

0 commit comments

Comments
 (0)