Changelog
v0.4.9
no-any
disallows all uses of any
/* tslint:disable */
now disables semicolon rule as wellno-unused-expression
Changelog
v0.4.8
no-var-requires
disallows require statements not part of an import statementtypedef
rule also checks for member variablesno-unused-variable
no longer triggers false positives for class members labeled only static
no-unused-expression
no longer triggers false positives for "use strict";
expressionsuse-strict
works correctly on function declarationsChangelog
v0.4.7
no-unused-expression
rule which disallows unused expression statementscheck-operator
option for the whitespace
rule now checks whitespace around the => tokenno-use-before-declare-rule
no longer triggers false positives for member variables of classes used before the class is declaredwhitespace
ruleno-unreachable
ruleexport import
statements no longer false positives for no-unused-variable-rule
tslint.json
file, under docs/sample.tslint.json
Changelog
v0.4.6
grunt-ts
instead of grunt-typescript
package.json
now contains a tslintConfig
paramater to allow users to specify the location of the configuration file thereno-unreachable
ruleChangelog
v0.4.5
no-unused-variable
no longer checks parameters by default. Parameters are now only checked if the check-parameters
option is set.no-unused-variable
parameter check no longer fails on variable argument parameters (like ...args) and on cases where the parameters are broken up by newlines.Changelog
v0.4.4
no-unused-variable
validates function parameters and constructor methodsno-empty
and no-trailing-comma
rules handle empty objectsChangelog
v0.4.3
no-unused-variable
no-trailing-comma
no-use-before-declare
--version
in CLIverbose
formatterno-empty
allows constructors with member declaration parameters--help
max-line-length
allows CRLF endings