mirror of
https://github.com/all-contributors/cli.git
synced 2025-01-09 21:46:29 +00:00
f54703d0ce
* 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>
14 lines
309 B
JavaScript
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,
|
|
},
|
|
}
|