Skip to content

Commit

Permalink
Allow extraneous modules included from twilio package
Browse files Browse the repository at this point in the history
  • Loading branch information
dprothero committed Sep 28, 2018
1 parent 544318f commit 2a93705
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .eslintrc
Expand Up @@ -11,6 +11,12 @@
"semi": ["error", "always"],
"object-curly-spacing": ["error", "always"],
"comma-dangle": ["error", "never"],
"mocha/no-exclusive-tests": "error"
"mocha/no-exclusive-tests": "error",
"node/no-extraneous-require": [
"error",
{
"allowModules": ["lodash", "request", "q"]
}
]
}
}

0 comments on commit 2a93705

Please sign in to comment.