Skip to content

Commit

Permalink
Merge pull request #527 from Gillespie59/development
Browse files Browse the repository at this point in the history
3.2.0
  • Loading branch information
EmmanuelDemey authored Jan 22, 2018
2 parents 2e1a52b + ee0ae86 commit cd58df1
Show file tree
Hide file tree
Showing 17 changed files with 5,224 additions and 64 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# eslint plugin angular [![Npm version](https://img.shields.io/npm/v/eslint-plugin-angular.svg)](https://www.npmjs.com/package/eslint-plugin-angular) [![Npm downloads per month](https://img.shields.io/npm/dm/eslint-plugin-angular.svg)](https://www.npmjs.com/package/eslint-plugin-angular)

[![Greenkeeper badge](https://badges.greenkeeper.io/Gillespie59/eslint-plugin-angular.svg)](https://greenkeeper.io/)

> ESLint rules for your angular project with checks for best-practices, conventions or potential errors.
[![Build Status](https://img.shields.io/travis/Gillespie59/eslint-plugin-angular/master.svg)](https://travis-ci.org/Gillespie59/eslint-plugin-angular)
Expand Down
5 changes: 3 additions & 2 deletions gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,11 @@ gulp.task('test', function(cb) {
});


gulp.task('docs', function() {
gulp.task('docs', function(done) {
docs.updateReadme('README.md');
docs.createDocFiles();
// docs.testDocs(cb);
done();
});

gulp.task('default', ['quality', 'docs', 'test']);
gulp.task('default', gulp.series('quality', 'docs', 'test'));
Loading

0 comments on commit cd58df1

Please sign in to comment.