Browse Source

Update gulpfile.js

tabs to spaces for consistency
v2
gn0st1c 6 years ago
committed by GitHub
parent
commit
26e25650b2
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 7 additions and 7 deletions
  1. +7
    -7
      code/gulpfile.js

+ 7
- 7
code/gulpfile.js View File

@ -96,14 +96,14 @@ var buildHeaderFile = function() {
cb(0, destination);
});
});
}
var htmllintReporter = function(filepath, issues) {
if (issues.length > 0) {
issues.forEach(function (issue) {
console.info(
if (issues.length > 0) {
issues.forEach(function (issue) {
console.info(
'[gulp-htmllint] ' +
filepath + ' [' +
issue.line + ',' +
@ -111,9 +111,9 @@ var htmllintReporter = function(filepath, issues) {
'(' + issue.code + ') ' +
issue.msg
);
});
process.exitCode = 1;
}
});
process.exitCode = 1;
}
};
var buildWebUI = function(module) {


Loading…
Cancel
Save