infra: fix lint (#150)

This commit is contained in:
Jake Bolam 2019-01-18 13:32:13 -05:00 committed by GitHub
parent 720f110298
commit 2295ae3011
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

13
.eslintrc.js Normal file
View file

@ -0,0 +1,13 @@
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,
}
}