Skip to content

Commit 6576403

Browse files
committed
Upgrade dependencies, eslint
1 parent ed40404 commit 6576403

File tree

3 files changed

+759
-262
lines changed

3 files changed

+759
-262
lines changed

.eslintrc

+5-4
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
11
{
2-
"parser": "typescript-eslint-parser",
2+
"parser": "@typescript-eslint/parser",
33

44
"plugins": [
5-
"typescript"
5+
"@typescript-eslint"
66
],
77

88
"extends": [
9-
"eslint:recommended"
9+
"eslint:recommended",
10+
"plugin:@typescript-eslint/recommended"
1011
],
1112

1213
"env": {
@@ -187,7 +188,7 @@
187188
"no-unneeded-ternary": 2,
188189
"no-unreachable": 2,
189190
"no-unused-expressions": 2,
190-
"typescript/no-unused-vars": 2,
191+
"no-unused-vars": 2,
191192
"no-use-before-define": 0,
192193
"no-useless-call": 2,
193194
"no-var": 2,

package.json

+12-12
Original file line numberDiff line numberDiff line change
@@ -39,19 +39,19 @@
3939
"author": "Ivo Meißner",
4040
"license": "MIT",
4141
"devDependencies": {
42-
"@types/assert": "^0.0.31",
43-
"@types/chai": "^4.1.4",
42+
"@types/assert": "^1.4.6",
43+
"@types/chai": "^4.2.11",
4444
"@types/graphql": "^0.13.0 || ^14.0.0",
45-
"@types/lodash.get": "^4.4.4",
46-
"@types/mocha": "^5.2.5",
47-
"chai": "^4.1.0",
48-
"eslint": "^5.4.0",
49-
"eslint-plugin-typescript": "^0.12.0",
45+
"@types/lodash.get": "^4.4.6",
46+
"@types/mocha": "^7.0.2",
47+
"@typescript-eslint/eslint-plugin": "^2.27.0",
48+
"@typescript-eslint/parser": "^2.27.0",
49+
"chai": "^4.2.0",
50+
"eslint": "^6.8.0",
5051
"graphql": "^0.13.0 || ^14.0.0",
51-
"mocha": "^5.2.0",
52-
"rimraf": "^2.6.1",
53-
"ts-node": "^7.0.1",
54-
"typescript": "^3.0.1",
55-
"typescript-eslint-parser": "^18.0.0"
52+
"mocha": "^7.1.1",
53+
"rimraf": "^3.0.2",
54+
"ts-node": "^8.8.2",
55+
"typescript": "^3.8.3"
5656
}
5757
}

0 commit comments

Comments
 (0)