Skip to content

Commit

Permalink
Partially fix existing lint errors in build-system/ (ampproject#11334)
Browse files Browse the repository at this point in the history
  • Loading branch information
rsimha authored and dmvjs committed Jan 31, 2018
1 parent e4559b4 commit b0b2d45
Show file tree
Hide file tree
Showing 33 changed files with 1,000 additions and 999 deletions.
7 changes: 7 additions & 0 deletions build-system/.eslintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"globals": {
"require": false,
"process": false,
"exports": false
}
}
4 changes: 2 additions & 2 deletions build-system/tasks/ava.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@ function runAvaTests() {
return gulp.src([
'csvify-size/test.js',
'get-zindex/test.js',
'prepend-global/test.js'
'prepend-global/test.js',
])
.pipe(ava({silent: !!process.env.TRAVIS}));
.pipe(ava({silent: !!process.env.TRAVIS}));
}

gulp.task('ava', 'Runs ava tests for gulp tasks', runAvaTests);
Loading

0 comments on commit b0b2d45

Please sign in to comment.