Skip to content

Commit

Permalink
chore: disable no-use-before-declare lint rule (no sense since ts 2.0)
Browse files Browse the repository at this point in the history
  • Loading branch information
develar committed Aug 1, 2016
1 parent 918a6c0 commit c89ef9f
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
5 changes: 2 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,6 @@
"semver": "^5.3.0",
"source-map-support": "^0.4.2",
"tslint": "^3.14.0-dev.1",
"typescript": "2.0.0-dev.20160705",
"update-notifier": "^1.0.2",
"uuid-1345": "^0.99.6",
"yargs": "^4.8.1"
Expand All @@ -106,7 +105,7 @@
]
},
"devDependencies": {
"@develar/semantic-release": "^6.3.2",
"@develar/semantic-release": "^6.3.3",
"@types/debug": "0.0.28",
"@types/mime": "0.0.28",
"@types/progress": "^1.1.27",
Expand All @@ -124,7 +123,7 @@
"should": "^10.0.0",
"ts-babel": "^1.0.3",
"tslint": "3.14.0",
"typescript": "^2.1.0-dev.20160726",
"typescript": "^2.1.0-dev.20160801",
"whitespace": "^2.0.0"
},
"babel": {
Expand Down
3 changes: 2 additions & 1 deletion test/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@
"sourceMap": true,
"noImplicitReturns": true,
"noEmitHelpers": true,
"noFallthroughCasesInSwitch": true
"noFallthroughCasesInSwitch": true,
"skipLibCheck": true
},
"include": [
"../typings/**/*.d.ts",
Expand Down
3 changes: 2 additions & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@
"noImplicitReturns": true,
"strictNullChecks": true,
"noEmitHelpers": true,
"noFallthroughCasesInSwitch": true
"noFallthroughCasesInSwitch": true,
"skipLibCheck": true
},
"declaration": {
"electron-builder": "out/electron-builder.d.ts",
Expand Down
1 change: 0 additions & 1 deletion tslint.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@
"ignore-pattern": "^_+awaiter$"
}
],
"no-use-before-declare": true,
"one-line": [
true,
"check-open-brace",
Expand Down

0 comments on commit c89ef9f

Please sign in to comment.