Skip to content

Commit 42d10cf

Browse files
committed
Add back 'use strict' statements
1 parent 5a6cad7 commit 42d10cf

File tree

4 files changed

+8
-0
lines changed

4 files changed

+8
-0
lines changed

Gruntfile.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@
66
* Licensed under the MIT license.
77
*/
88

9+
'use strict';
10+
911
module.exports = function(grunt) {
1012
// Project configuration.
1113
grunt.initConfig({

tasks/build-contrib.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@
66
* Licensed under the MIT license.
77
*/
88

9+
'use strict';
10+
911
module.exports = function(grunt) {
1012
grunt.registerTask('build-contrib', ['contrib-ci', 'contrib-core']);
1113
};

tasks/contrib-ci.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@
66
* Licensed under the MIT license.
77
*/
88

9+
'use strict';
10+
911
module.exports = function(grunt) {
1012
grunt.registerTask('contrib-ci', 'Normalizes AppVeyor and Travis CI configs.', skipIfExists => {
1113
skipIfExists = skipIfExists === 'skipIfExists';

tasks/contrib-core.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@
66
* Licensed under the MIT license.
77
*/
88

9+
'use strict';
10+
911
module.exports = function(grunt) {
1012
// Add custom template delimiters.
1113
grunt.template.addDelimiters('build-contrib', '{%', '%}');

0 commit comments

Comments
 (0)