Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

## [Unreleased]

### Changed
- `no-use-before-declare` disabled
- Disabled because when defining types it errors when they are out of order, which ruins readability and cannot affect runtime

## [1.5.0] - 2017-08-29

### Added
Expand Down
3 changes: 3 additions & 0 deletions tslint.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,9 @@ module.exports = {

"return-undefined": false,

/** Disabled because when defining types it errors when they are out of order, which ruins readability and cannot affect runtime */
"no-use-before-declare": false,

"await-promise": [true, "Thenable", "Bluebird"]
}
}
1 change: 1 addition & 0 deletions tslint.json
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@
],
"no-submodule-imports": false,
"return-undefined": false,
"no-use-before-declare": false,
"await-promise": [
true,
"Thenable",
Expand Down