Skip to content

Commit

Permalink
chore: fix eslint errors due to eslint upgrade to v7
Browse files Browse the repository at this point in the history
  • Loading branch information
probil committed May 24, 2020
1 parent 4da2d43 commit afd8b0e
Showing 1 changed file with 11 additions and 5 deletions.
16 changes: 11 additions & 5 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,16 @@
{
"root": true,
"extends": [
"airbnb-base",
"plugin:jest/recommended"
],
"extends": "airbnb-base",
"env": {
"browser": true
}
},
"overrides": [
{
"files": "src/**/__tests__/**",
"extends": [
"plugin:jest/recommended",
"plugin:jest/style"
]
}
]
}

0 comments on commit afd8b0e

Please sign in to comment.