Skip to content

Commit bbad821

Browse files
authored
Build: Require strict mode in Node.js scripts via ESLint
So far, only browser-based JS files were required to be in strict mode (in the function form). This commit adds such a requirement to Node.js scripts where the global form is preferred. All Node.js scripts in sloppy mode were converted to strict mode. Closes gh-4499
1 parent 4504fc3 commit bbad821

11 files changed

+24
-14
lines changed

.eslintrc-node.json

+4
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,9 @@
1010
"env": {
1111
"es6": true,
1212
"node": true
13+
},
14+
15+
"rules": {
16+
"strict": ["error", "global"]
1317
}
1418
}

Gruntfile.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
module.exports = function( grunt ) {
2-
"use strict";
1+
"use strict";
32

3+
module.exports = function( grunt ) {
44
function readOptionalJSON( filepath ) {
55
var stripJSONComments = require( "strip-json-comments" ),
66
data = {};

build/release.js

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
"use strict";
2+
13
var fs = require( "fs" );
24

35
module.exports = function( Release ) {

build/release/cdn.js

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
"use strict";
2+
13
var
24
fs = require( "fs" ),
35
shell = require( "shelljs" ),

build/release/dist.js

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
"use strict";
2+
13
module.exports = function( Release, files, complete ) {
24

35
var

build/tasks/build.js

+2-3
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,9 @@
44
* and includes/excludes specified modules
55
*/
66

7-
module.exports = function( grunt ) {
8-
9-
"use strict";
7+
"use strict";
108

9+
module.exports = function( grunt ) {
1110
var fs = require( "fs" ),
1211
requirejs = require( "requirejs" ),
1312
Insight = require( "insight" ),

build/tasks/dist.js

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
1-
module.exports = function( grunt ) {
2-
3-
"use strict";
1+
"use strict";
42

3+
module.exports = function( grunt ) {
54
var fs = require( "fs" ),
65
filename = grunt.option( "filename" ),
76
distpaths = [

build/tasks/node_smoke_tests.js

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
1-
module.exports = ( grunt ) => {
2-
3-
"use strict";
1+
"use strict";
42

3+
module.exports = ( grunt ) => {
54
const fs = require( "fs" );
65
const spawnTest = require( "./lib/spawn_test.js" );
76
const testsDir = "./test/node_smoke_tests/";

build/tasks/qunit_fixture.js

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
"use strict";
2+
13
var fs = require( "fs" );
24

35
module.exports = function( grunt ) {

build/tasks/sourcemap.js

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
"use strict";
2+
13
var fs = require( "fs" );
24

35
module.exports = function( grunt ) {

build/tasks/testswarm.js

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
1-
module.exports = function( grunt ) {
2-
3-
"use strict";
1+
"use strict";
42

3+
module.exports = function( grunt ) {
54
grunt.registerTask( "testswarm", function( commit, configFile, projectName, browserSets,
65
timeout, testMode ) {
76
var jobName, config, tests,

0 commit comments

Comments
 (0)