Skip to content

Commit

Permalink
Some more fixes related to package upgrades
Browse files Browse the repository at this point in the history
  • Loading branch information
timdorr committed May 14, 2021
1 parent 239fbc0 commit b730dcd
Show file tree
Hide file tree
Showing 7 changed files with 1,349 additions and 842 deletions.
3 changes: 1 addition & 2 deletions .eslintignore
Expand Up @@ -2,6 +2,5 @@
**/node_modules/**
**/server.js
**/webpack.config*.js
**/flow-typed/**
# TODO: figure out a way to lint this using flow instead of typescript
examples/todos-flow
examples/todos-flow
5 changes: 3 additions & 2 deletions .eslintrc.js
Expand Up @@ -7,7 +7,7 @@ module.exports = {

settings: {
react: {
version: '16.8'
version: '17'
},
'import/parsers': {
'@typescript-eslint/parser': ['.ts', '.tsx']
Expand All @@ -28,7 +28,8 @@ module.exports = {
vars: 'all',
args: 'after-used',
ignoreRestSiblings: true,
argsIgnorePattern: '^_' // ignore unused variables whose name is '_'
argsIgnorePattern: '^_',
varsIgnorePattern: '^_'
}
]
}
Expand Down

0 comments on commit b730dcd

Please sign in to comment.