Skip to content

Commit

Permalink
disable some promise rules eslint
Browse files Browse the repository at this point in the history
  • Loading branch information
dpgraham committed Dec 17, 2020
1 parent 0e0ebb7 commit db0e9bd
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,10 @@
"plugins": ["jest"],
"rules": {
"no-console": "off",
"promise/no-native": "off"
"promise/no-native": "off",
"promise/prefer-await-to-callbacks": "off",
"promise/prefer-await-to-then": "off",
"promise/catch-or-return": "off"
},
"env": {
"jest/globals": true
Expand Down

0 comments on commit db0e9bd

Please sign in to comment.