File tree Expand file tree Collapse file tree 3 files changed +8
-1
lines changed Expand file tree Collapse file tree 3 files changed +8
-1
lines changed Original file line number Diff line number Diff line change 1+ # 1.15.1
2+
3+ ** Bugfixes:**
4+
5+ * ` naming-convention ` : ` filter ` option is no longer affect by the order of checked names and caching
6+
17# 1.15.0
28
39** Features:**
Original file line number Diff line number Diff line change 11{
22 "name" : " tslint-consistent-codestyle" ,
3- "version" : " 1.15.0 " ,
3+ "version" : " 1.15.1 " ,
44 "description" : " Additional rules to enforce constistent code style with tslint" ,
55 "repository" : {
66 "type" : " git" ,
Original file line number Diff line number Diff line change @@ -42,6 +42,7 @@ export abstract class AbstractIfStatementWalker<T> extends Lint.AbstractWalker<T
4242 protected abstract _checkIfStatement ( node : ts . IfStatement ) : void ;
4343}
4444
45+ // TODO replace with isBlockScopedDeclarationStatement from [email protected] 4546function isBlockScopedDeclaration ( statement : ts . Statement ) : boolean {
4647 switch ( statement . kind ) {
4748 case ts . SyntaxKind . VariableStatement :
You can’t perform that action at this time.
0 commit comments