- Fix plugin return type pull #150.
- Drop dependency on deprecated gulp-util pull #140.
- Determine configuration separately for each source file pull #134.
- Add allowWarnings gulp-tslint option pull #122.
- breaking change: Require tslint 5.x pull #113.
- Update tslint to 4.0.0. See tslint changelog for a list of breaking changes.
- Drop support for Node.js 0.10
- Allow custom formatter as a function pull #68.
- Allow type checked rules
- breaking change: Add support for custom TSLint formatters, gulp-tslint reporters have been removed.
- breaking change: The signature for
tslintPlugin.report
has changed totslintPlugin.report(options?: ReportOptions)
. This requires e.g. the following to be changed from
.pipe(tslint())
.pipe(tslint.report("verbose"))
to
.pipe(tslint({
formatter: "verbose"
}))
.pipe(tslint.report())
- Custom gulp-tslint reporters will no longer work; instead users will have to make use of the TSLint equivalents. For more information see pull #66.
- breaking change:
tslintPlugin.ProseErrorFormat
is no longer exported. - breaking change: The options passed to tslintPlugin have changed. The PluginOptions interface is now:
interface PluginOptions {
configuration?: any;
formatter?: string;
formattersDirectory?: string;
rulesDirectory?: string;
tslint?: any;
}
- breaking change: "full" formatter was removed
- Added "vso", "pmd" and "checkstyle" formatters
- support for extends property
- Updated rcloader fixing overriding configuration keys: spalger/rcloader#10
- Added "typings" support, now gulp-tslint types are automatically enabled in TypeScript
- Converted to TypeScript
- summarizeFailureOutput now works with emitError: false
- breaking change: Update tslint to 3.0.0
- breaking change: tslint is now a peer dependency
- Add the tslint option to supply a custom tslint module
- Update tslint to use the TypeScript 1.5.0-beta compiler
- Due to changes to the typescript compiler API, old custom rules may no longer work and may need to be rewritten
- the JSON formatter's line and character positions are now back to being 0-indexed instead of 1-indexed
- Gulp util's logging used for printing errors.
- The PluginError exception now includes information about the failures
- Update tslint to 1.0.0
- Add .npmignore for reduced package size.
- Fix rulesDirectory
- Remove formattersDirectory