Created by: t3chnoboy
There is no consistency in putting space before parentheses in anonymous function declaration. For example in README.MD Sample gulpfile: At line 23 there is no space before ()
gulp.task('images', function() {
At line 31 there is a space
gulp.task('watch', function () {
I've added missing spaces according to code conventions There were also some missing spaces between ')' and '{'. I've added them too.