lintworm
v0.0.5
Published
Gulp plugin to lint all kind of files based on keywords.
Readme
Lintworm
Gulp plugin to lint all kind of files based on keywords.
Usage

Install Lintworm using npm:
npm install lintworm --save-devThen use it in your Gulp tasks:
var gulp = require('gulp');
var lintworm = require('lintworm');
gulp.task('lintworm', function() {
return gulp.src(['./src/**/*'])
.pipe(lintworm(strings, options));
});Parameter
The following parameter can be passed to the plugin:
strings
The strings to find in the given files.
This can either be flat array of strings or regular expressions:
['TODO', /[Ff]ixme/]or it can be an array of objects:
[{
string: 'TODO',
level: 'error' // Override default level for this string
file: 'src/*.js' // Specify files to check with this keyword using glob pattern
}]options
The following options can be passed additionally:
level
The default level of reported findings.
Default value is 'warn'.
failOnError
Whether the task should fail if at least one finding with error level is found.
Default value is true.
Full example
The following gulp-task
var gulp = require('gulp');
var lintworm = require('lintworm');
gulp.task('lintworm', function() {
return gulp.src(['./src/**/*'])
.pipe(lintworm([
// Warn for TODOs in general
'TODO',
// Warn for @ts-ignore statements that contain an explanation
/@ts-ignore\s+\w+/,
// Error on @ts-ignore statements that do not contain an explanation
{string: /@ts\-ignore$/, level: 'error'},
// Warn on skipped tests in spec-files
{string: 'skip', level: 'warn', file: '*.spec.ts'}
]));
});might output this:
/path/to/files/src/index.js (2)
[25] // TODO: A dynamically upper bound is required.
[30] // @ts-ignore
------------------------------------------------------------
Found 1 error and 1 warning.
