Skip to content

Commit

Permalink
Chore: Update typescript-eslint-parser and typescript (bradzacher#115)
Browse files Browse the repository at this point in the history
  • Loading branch information
macklinu authored and JamesHenry committed Apr 29, 2018
1 parent fdedc7e commit 5e410a3
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 3 additions & 1 deletion lib/rules/adjacent-overload-signatures.js
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,9 @@ module.exports = {
}
case "DeclareFunction":
case "FunctionDeclaration":
case "TSNamespaceFunctionDeclaration": {
case "TSNamespaceFunctionDeclaration":
case "TSEmptyBodyFunctionDeclaration":
case "TSEmptyBodyDeclareFunction": {
return member.id.name;
}
case "TSMethodSignature": {
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@
"lint-staged": "^6.0.0",
"mocha": "^4.0.1",
"prettier": "^1.11.1",
"typescript": "~2.6.1",
"typescript-eslint-parser": "^10.0.0"
"typescript": "~2.8.1",
"typescript-eslint-parser": "^15.0.0"
},
"lint-staged": {
"*.js": [
Expand Down

0 comments on commit 5e410a3

Please sign in to comment.