Skip to content

Commit

Permalink
feat(hooks): Add solitary hooks config that can be extended ad-hoc wi…
Browse files Browse the repository at this point in the history
…th other configs
  • Loading branch information
tomfin46 committed Oct 21, 2019
1 parent bf2b372 commit 992991b
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 1 deletion.
5 changes: 5 additions & 0 deletions hooks.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
module.exports = {
extends: [
'./shared/hooks'
],
}
2 changes: 1 addition & 1 deletion react-hooks.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module.exports = {
extends: [
'./shared/react',
'airbnb/hooks'
'./shared/hooks'
],
}
5 changes: 5 additions & 0 deletions shared/hooks.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
module.exports = {
extends: [
'airbnb/hooks'
],
}

0 comments on commit 992991b

Please sign in to comment.