Michael Ledin

Results 16 comments of Michael Ledin

@emilg1101 Sorry, I developed this solution a while ago and do not remember the details.

Sorry, I do not have enough time to prepare example project right now. And the issue is not configuration issue. tslint returns [LintResult.fixes](https://github.com/palantir/tslint/blob/a3d8d6fd5a52537e7d61f2759b68980c649a7685/src/index.ts#L41) array. gulp-tslint should [somewhere](https://github.com/panuhorsmalahti/gulp-tslint/blob/19726ad3c51663f41e6089441e435b624159a67a/index.ts#L199) check if all...

In my project I use plugin like: ```javascript var gulp = require('gulp'), gulpTsLint = require('gulp-tslint'), tslint = require('tslint'); gulp.task('tslint', function () { var program = tslint.Linter.createProgram('tsconfig.json'); return gulp.src('src/**/*.ts') .pipe(gulpTsLint({ configuration:...

It still relevant with Node 6. My gulpfile.js requires 30 modules and using this module decreased build time from 26 to 23 seconds on one machine and from 50 to...

I had this issue also but I also had lines from [above comment](https://github.com/vim/vim/issues/1481) in my .vimrc though they were inside `if !has('gui') ... endif` block. I thought that `gui` flag...