Skip to content

Commit d9c8574

Browse files
committed
Update typescript and eslint related deps
Disable no-unused-vars for ts e tsx files See eslint/typescript-eslint-parser#553
1 parent 7e2dc14 commit d9c8574

File tree

4 files changed

+259
-358
lines changed

4 files changed

+259
-358
lines changed

.eslintrc.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,8 @@ module.exports = {
9292
"sourceType": "module"
9393
},
9494
"rules": {
95-
"no-undef": "off"
95+
"no-undef": "off",
96+
"no-unused-vars": "off"
9697
}
9798
},
9899
{
@@ -111,6 +112,7 @@ module.exports = {
111112
],
112113
"rules": {
113114
"no-undef": "off",
115+
"no-unused-vars": "off",
114116
"react/jsx-uses-react": "error",
115117
"react/jsx-uses-vars": "error"
116118
}

0 commit comments

Comments
 (0)