37 lines
744 B
JavaScript
37 lines
744 B
JavaScript
module.exports = {
|
|
parserOptions: {
|
|
ecmaVersion: 6,
|
|
sourceType: 'module',
|
|
ecmaFeatures: {
|
|
jsx: true,
|
|
experimentalObjectRestSpread: true,
|
|
}
|
|
},
|
|
plugins: [
|
|
'react',
|
|
'flowtype',
|
|
],
|
|
extends: [
|
|
'eslint:recommended',
|
|
'plugin:react/recommended',
|
|
'plugin:flowtype/recommended'
|
|
],
|
|
settings: {
|
|
flowtype: {
|
|
onlyFilesWithFlowAnnotation: true,
|
|
}
|
|
},
|
|
rules: {
|
|
'react/prop-types': ['off'],
|
|
'react/display-name': ['off'],
|
|
'no-console': ['off'],
|
|
},
|
|
env: {
|
|
browser: true,
|
|
node: true,
|
|
es6: true,
|
|
},
|
|
globals: {
|
|
Promise: true,
|
|
}
|
|
}; |