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