Skip to content

Commit b730dcd

Browse files
committed
Some more fixes related to package upgrades
1 parent 239fbc0 commit b730dcd

File tree

7 files changed

+1349
-842
lines changed

7 files changed

+1349
-842
lines changed

.eslintignore

+1-2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,5 @@
22
**/node_modules/**
33
**/server.js
44
**/webpack.config*.js
5-
**/flow-typed/**
65
# TODO: figure out a way to lint this using flow instead of typescript
7-
examples/todos-flow
6+
examples/todos-flow

.eslintrc.js

+3-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ module.exports = {
77

88
settings: {
99
react: {
10-
version: '16.8'
10+
version: '17'
1111
},
1212
'import/parsers': {
1313
'@typescript-eslint/parser': ['.ts', '.tsx']
@@ -28,7 +28,8 @@ module.exports = {
2828
vars: 'all',
2929
args: 'after-used',
3030
ignoreRestSiblings: true,
31-
argsIgnorePattern: '^_' // ignore unused variables whose name is '_'
31+
argsIgnorePattern: '^_',
32+
varsIgnorePattern: '^_'
3233
}
3334
]
3435
}

0 commit comments

Comments
 (0)