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

Commit fff30b5

Browse files
author
Kai Cataldo
committed
Upgrade: typescript-estree ^5.3.0
1 parent 8ff0ad1 commit fff30b5

File tree

4 files changed

+14
-13
lines changed

4 files changed

+14
-13
lines changed

.eslintrc.js

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
"use strict";
2+
3+
module.exports = {
4+
root: true,
5+
plugins: ["node"],
6+
extends: ["eslint", "plugin:node/recommended"],
7+
rules: {
8+
"no-undefined": "off",
9+
"lines-around-comment": "off",
10+
"newline-after-var": "off"
11+
}
12+
};

.eslintrc.yml

-11
This file was deleted.

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ The following additional configuration options are available by specifying them
5959

6060
We will always endeavor to support the latest stable version of TypeScript.
6161

62-
The version of TypeScript currently supported by this parser is `~3.0.1`. This is reflected in the `devDependency` requirement within the package.json file, and it is what the tests will be run against. We have an open `peerDependency` requirement in order to allow for experimentation on newer/beta versions of TypeScript.
62+
The version of TypeScript currently supported by this parser is `~3.1.1`. This is reflected in the `devDependency` requirement within the package.json file, and it is what the tests will be run against. We have an open `peerDependency` requirement in order to allow for experimentation on newer/beta versions of TypeScript.
6363

6464
If you use a non-supported version of TypeScript, the parser will log a warning to the console.
6565

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
"eslint-scope": "^4.0.0",
4848
"eslint-visitor-keys": "^1.0.0",
4949
"lodash": "^4.17.11",
50-
"typescript-estree": "5.0.0"
50+
"typescript-estree": "^5.3.0"
5151
},
5252
"devDependencies": {
5353
"eslint": "^4.19.1",

0 commit comments

Comments
 (0)