Skip to content

Commit ef636c9

Browse files
committed
v1.15.1
1 parent 73149cc commit ef636c9

File tree

3 files changed

+8
-1
lines changed

3 files changed

+8
-1
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
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:**

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
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",

src/walker.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff 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]
4546
function isBlockScopedDeclaration(statement: ts.Statement): boolean {
4647
switch (statement.kind) {
4748
case ts.SyntaxKind.VariableStatement:

0 commit comments

Comments
 (0)