0.0.2 • Published 10 years ago

gulp-tslint-log v0.0.2

Weekly downloads
2
License
MIT
Repository
github
Last release
10 years ago

gulp-tslint-log

Information

Usage

var gulp = require('gulp');
var tslintLog  = require('gulp-tslint-log');

gulp.task('default', function () {
  return gulp
    .src('app/**/*.ts')
    .pipe(tslintLog({
        quotemark: [true, 'single'],
        semicolon: true
    }))
    .pipe(gulp.dest('dev'));
});

By default it checks for the tslint.json file in the current path, or you can specify one by passing a string as the first argument. If the default tslint.json is used, you may override the options by passing an object with the rules.

More information on about the available tslint options.