Skip to content

Commit 3736268

Browse files
committed
Minor lint tweaks.
1 parent 0511085 commit 3736268

File tree

4 files changed

+9
-13
lines changed

4 files changed

+9
-13
lines changed

.travis.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,9 @@ language: node_js
44

55
node_js:
66
- "0.10"
7-
- "0.12"
87
- "4"
9-
- "5"
108
- "6"
11-
- "iojs"
9+
- "7"
1210

1311
matrix:
1412
fast_finish: true

Gruntfile.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -389,9 +389,9 @@ module.exports = function(grunt) {
389389
},
390390
options: {
391391
beautify: {
392-
'ascii_only': true,
393-
'indent_start': 2,
394-
'max_line_len': 40
392+
ascii_only: true,
393+
indent_start: 2,
394+
max_line_len: 40
395395
}
396396
}
397397
}

appveyor.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,16 +7,14 @@ environment:
77
matrix:
88
- nodejs_version: "0.10"
99
platform: x86
10-
- nodejs_version: "0.12"
11-
platform: x86
1210
- nodejs_version: "4"
1311
platform: x64
1412
- nodejs_version: "4"
1513
platform: x86
16-
- nodejs_version: "5"
17-
platform: x86
1814
- nodejs_version: "6"
1915
platform: x86
16+
- nodejs_version: "7"
17+
platform: x86
2018

2119
install:
2220
- ps: Install-Product node $env:nodejs_version $env:platform

tasks/uglify.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,9 @@ function relativePath(file1, file2) {
2424
return '';
2525
}
2626

27-
function reportFacility( grunt, options ){
27+
function reportFacility(grunt, options) {
2828
var reporter;
29-
switch( options.report ){
29+
switch (options.report) {
3030
case 'none':
3131
reporter = grunt.verbose;
3232
break;
@@ -64,7 +64,7 @@ module.exports = function(grunt) {
6464
screwIE8: true,
6565
quoteStyle: 0
6666
});
67-
var log = reportFacility( grunt, options );
67+
var log = reportFacility(grunt, options);
6868

6969
// Process banner.
7070
var banner = normalizeLf(options.banner);

0 commit comments

Comments
 (0)