Skip to content
This repository was archived by the owner on Jan 19, 2019. It is now read-only.

Commit f4b9893

Browse files
authored
Breaking: Support TypeScript 3.1 (fixes #524) (#525)
1 parent 4c04bde commit f4b9893

File tree

7 files changed

+11
-12
lines changed

7 files changed

+11
-12
lines changed

Diff for: README.md

+3-4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
> <h1>Help Wanted!</h1>
2+
> If you're familiar with TypeScript and ESLint, and you'd like to see this project progress, please consider contributing. We need people with a good knowledge of TypeScript to ensure that the integration with the ESLint ecosystem is useful.
3+
14
# TypeScript ESLint Parser
25

36
An ESLint custom parser which leverages [TypeScript ESTree](https://github.com/JamesHenry/typescript-estree) to allow for ESLint to lint TypeScript source code.
@@ -37,10 +40,6 @@ If you use a non-supported version of TypeScript, the parser will log a warning
3740

3841
**Please ensure that you are using a supported version before submitting any issues/bug reports.**
3942

40-
## Help Wanted!
41-
42-
If you're familiar with TypeScript and ESLint, and you'd like to see this project progress, please consider contributing. We need people with a good knowledge of TypeScript to ensure this parser is useful.
43-
4443
## Reporting Issues
4544

4645
Please **do not report parsing/AST issues in this repo**, report them directly to [TypeScript ESTree](https://github.com/JamesHenry/typescript-estree).

Diff for: package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "typescript-eslint-parser",
3-
"description": "An Esprima-style parser for TypeScript",
3+
"description": "An ESLint custom parser which leverages TypeScript ESTree",
44
"author": "Nicholas C. Zakas <[email protected]>",
55
"homepage": "https://github.com/eslint/typescript-eslint-parser",
66
"main": "parser.js",
@@ -24,7 +24,7 @@
2424
"npm-license": "0.3.3",
2525
"shelljs": "0.8.2",
2626
"shelljs-nodecli": "0.1.1",
27-
"typescript": "~3.0.1"
27+
"typescript": "~3.1.1"
2828
},
2929
"keywords": [
3030
"ast",
@@ -49,7 +49,7 @@
4949
},
5050
"dependencies": {
5151
"eslint": "4.19.1",
52-
"typescript-estree": "1.0.0"
52+
"typescript-estree": "2.1.0"
5353
},
5454
"peerDependencies": {
5555
"typescript": "*"

Diff for: tests/integration/declared-empty-body-functions-issue-162/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@
88
"devDependencies": {
99
"eslint": "4.19.1",
1010
"jest": "23.1.0",
11-
"typescript": "~2.9.1"
11+
"typescript": "~3.1.1"
1212
}
1313
}

Diff for: tests/integration/jsdoc-indent-issues-344-422/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@
88
"devDependencies": {
99
"eslint": "4.19.1",
1010
"jest": "23.1.0",
11-
"typescript": "~2.9.1"
11+
"typescript": "~3.1.1"
1212
}
1313
}

Diff for: tests/integration/method-overloads-issue-389/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@
88
"devDependencies": {
99
"eslint": "4.19.1",
1010
"jest": "23.1.0",
11-
"typescript": "~2.9.1"
11+
"typescript": "~3.1.1"
1212
}
1313
}

Diff for: tests/integration/no-redeclare-overloaded-functions-issue-402/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@
88
"devDependencies": {
99
"eslint": "4.19.1",
1010
"jest": "23.1.0",
11-
"typescript": "~2.9.1"
11+
"typescript": "~3.1.1"
1212
}
1313
}

Diff for: tests/integration/range-error-indent-issue-333/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@
88
"devDependencies": {
99
"eslint": "4.19.1",
1010
"jest": "23.1.0",
11-
"typescript": "~2.9.1"
11+
"typescript": "~3.1.1"
1212
}
1313
}

0 commit comments

Comments
 (0)