Issue #2008 - Fix lint errors for make.js
This commit is contained in:
parent
b3634a3826
commit
c4eab852e0
9
make.js
9
make.js
@ -1,5 +1,7 @@
|
|||||||
/* -*- Mode: Java; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
/* -*- Mode: Java; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
||||||
/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab: */
|
/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab: */
|
||||||
|
/* jshint node:true */
|
||||||
|
/* globals cat, cd, cp, echo, env, exec, exit, find, ls, mkdir, mv, process, rm, sed, target, test */
|
||||||
|
|
||||||
'use strict';
|
'use strict';
|
||||||
|
|
||||||
@ -39,7 +41,7 @@ var DEFINES = {
|
|||||||
target.all = function() {
|
target.all = function() {
|
||||||
// Don't do anything by default
|
// Don't do anything by default
|
||||||
echo('Please specify a target. Available targets:');
|
echo('Please specify a target. Available targets:');
|
||||||
for (t in target)
|
for (var t in target)
|
||||||
if (t !== 'all') echo(' ' + t);
|
if (t !== 'all') echo(' ' + t);
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -611,8 +613,9 @@ target.chrome = function() {
|
|||||||
exit(1);
|
exit(1);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
var manifest;
|
||||||
try {
|
try {
|
||||||
var manifest = JSON.parse(cat(browserManifest));
|
manifest = JSON.parse(cat(browserManifest));
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
echo('Malformed browser manifest file');
|
echo('Malformed browser manifest file');
|
||||||
echo(e.message);
|
echo(e.message);
|
||||||
@ -979,7 +982,7 @@ target.jshint = function() {
|
|||||||
echo();
|
echo();
|
||||||
echo('### Linting JS files (this can take a while!)');
|
echo('### Linting JS files (this can take a while!)');
|
||||||
|
|
||||||
var LINT_FILES = [//'make.js',
|
var LINT_FILES = ['make.js',
|
||||||
//'external/builder/*.js',
|
//'external/builder/*.js',
|
||||||
//'external/crlfchecker/*.js',
|
//'external/crlfchecker/*.js',
|
||||||
'src/',
|
'src/',
|
||||||
|
Loading…
Reference in New Issue
Block a user