Skip to content

Commit 0fd5cad

Browse files
matthargettthymikee
authored andcommitted
Support TypeScript 3.7 (#85)
TypeScript 3.7 introduces nullish coalescing, optional chaining, and some other new syntax. To avoid false positives (nonsense lint warnings) due to prettier and other packages not understanding the new syntax, some packages need to be bumped.
1 parent b7a4710 commit 0fd5cad

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

package.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -13,26 +13,26 @@
1313
],
1414
"dependencies": {
1515
"babel-eslint": "^10.0.3",
16-
"eslint-config-prettier": "^6.4.0",
17-
"eslint-plugin-flowtype": "^4.3.0",
16+
"eslint-config-prettier": "^6.5.0",
17+
"eslint-plugin-flowtype": "^4.4.1",
1818
"eslint-plugin-import": "^2.18.2",
19-
"eslint-plugin-jest": "^22.20.0",
19+
"eslint-plugin-jest": "^23.0.3",
2020
"eslint-plugin-prettier": "^3.1.1",
2121
"eslint-plugin-promise": "^4.2.1",
2222
"eslint-plugin-react": "^7.16.0",
2323
"eslint-plugin-react-hooks": "^2.2.0",
2424
"eslint-plugin-react-native": "^3.8.1",
2525
"eslint-restricted-globals": "^0.2.0",
26-
"prettier": "^1.18.2"
26+
"prettier": "^1.19.1"
2727
},
2828
"peerDependencies": {
2929
"eslint": ">=6"
3030
},
3131
"devDependencies": {
32-
"@typescript-eslint/eslint-plugin": "^2.5.0",
33-
"@typescript-eslint/parser": "^2.5.0",
34-
"eslint": "^6.5.1",
35-
"typescript": "^3.5.2"
32+
"@typescript-eslint/eslint-plugin": "^2.7.0",
33+
"@typescript-eslint/parser": "^2.7.0",
34+
"eslint": "^6.6.0",
35+
"typescript": "^3.7.2"
3636
},
3737
"scripts": {
3838
"test": "yarn --cwd test && yarn --cwd test eslint --ext .js,.ts,.tsx ."

0 commit comments

Comments
 (0)