Skip to content

Instantly share code, notes, and snippets.

@oliverlundquist
Created January 28, 2015 11:58
Show Gist options
  • Save oliverlundquist/66e71f3bafc102240994 to your computer and use it in GitHub Desktop.
Save oliverlundquist/66e71f3bafc102240994 to your computer and use it in GitHub Desktop.
phplint
gulp.task('phplint', function () {
exec('find . -type f -name "*.php" | xargs -n 1 php -d display_errors=1 -l | grep -v "No syntax errors"', function(error, stdout) {
console.log(stdout);
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment