diff --git a/gulp-tasks/lint.js b/gulp-tasks/lint.js index 62c7806a38..1132abdf1e 100644 --- a/gulp-tasks/lint.js +++ b/gulp-tasks/lint.js @@ -9,12 +9,13 @@ gitignore.push('**/*.ts'); gulp.task('tslint', () => gulp .src(gitignore) - .pipe(tslint()) - .pipe(tslint.report('prose', { + .pipe(tslint({ + formatter: 'verbose', emitError: true, summarizeFailureOutput: true, reportLimit: 50 })) + .pipe(tslint.report()) ); gulp.task('lint', ['tslint']); diff --git a/package.json b/package.json index 6de4a44c94..e55ee0ec25 100644 --- a/package.json +++ b/package.json @@ -50,7 +50,7 @@ }, "homepage": "https://github.com/valor-software/ng2-bootstrap#readme", "dependencies": { - "moment": "2.13.0" + "moment": "2.14.1" }, "peerDependencies": { "@angular/common": "2.0.0-rc.4", @@ -66,7 +66,7 @@ "@angular/platform-browser": "2.0.0-rc.4", "@angular/platform-browser-dynamic": "2.0.0-rc.4", "@angular/router": "3.0.0-beta.2", - "async": "1.5.2", + "async": "2.0.0", "bootstrap": "3.3.6", "codecov": "1.0.1", "conventional-changelog-cli": "1.2.0", @@ -76,26 +76,26 @@ "es6-promise": "3.2.1", "es6-shim": "0.35.1", "es7-reflect-metadata": "1.6.0", - "eslint-config-valorsoft": "0.0.16", + "eslint-config-valorsoft": "0.1.0", "file-loader": "0.9.0", "gh-pages": "0.11.0", "gitignore-to-glob": "0.2.1", "google-code-prettify": "1.0.1", "gulp": "3.9.1", "gulp-size": "2.1.0", - "gulp-tslint": "5.0.0", - "lite-server": "2.2.0", + "gulp-tslint": "6.0.1", + "lite-server": "2.2.2", "marked": "0.3.5", - "ng2-webpack-config": "0.0.3", + "ng2-webpack-config": "0.0.4", "pre-commit": "1.1.3", - "reflect-metadata": "0.1.2", + "reflect-metadata": "0.1.3", "require-dir": "0.3.0", "rxjs": "5.0.0-beta.6", "systemjs-builder": "0.15.23", - "tslint-config-valorsoft": "1.0.3", - "typedoc": "0.4.1", + "tslint-config-valorsoft": "1.1.0", + "typedoc": "0.4.4", "typescript": "1.8.10", - "typings": "1.3.0", + "typings": "1.3.1", "zone.js": "0.6.12" } } diff --git a/tslint.json b/tslint.json index 6b89b2004d..5f89959e74 100644 --- a/tslint.json +++ b/tslint.json @@ -3,6 +3,9 @@ "rulesDirectory": "./node_modules/codelyzer", "rules": { "component-selector-name": [false, ""], - "no-constructor-vars": false + "no-constructor-vars": false, + "ordered-imports": false, + "import-destructuring-spacing": false, + "only-arrow-functions": false } }