all-contributors-cli/.eslintrc.js
Justin Dalrymple f54703d0ce feat: auto-fetching - continuation of #196 (#259)
* fix: Adjusting file access that was clashing with uncontrolled promises

* review: Adding code review changing and linting

* fix(cli): rectify an async call

Co-authored-by: Maximilian Berkmann <maxieberkmann@gmail.com>
2023-07-23 15:54:33 +01:00

14 lines
309 B
JavaScript

module.exports = {
extends: [
require.resolve('eslint-config-kentcdodds'),
require.resolve('eslint-config-kentcdodds/jest'),
],
rules: {
'func-names': 0,
'babel/camelcase': 0,
'import/extensions': 0,
'consistent-return': 0,
'no-process-exit': 0,
'no-continue': 0,
},
}