24 lines
462 B
JavaScript
24 lines
462 B
JavaScript
module.exports = {
|
|
root: true,
|
|
parserOptions: {
|
|
ecmaVersion: 2018,
|
|
parser: 'babel-eslint',
|
|
sourceType: 'module'
|
|
},
|
|
env: {
|
|
browser: true,
|
|
es6: true,
|
|
node: true
|
|
},
|
|
extends: [
|
|
"eslint:recommended",
|
|
"plugin:react/recommended"
|
|
],
|
|
globals: {
|
|
"ApexCharts": true
|
|
},
|
|
rules: {
|
|
// Remove this when prettier 2.0 is out
|
|
'space-before-function-paren': 0 // Do not clash with Prettier
|
|
}
|
|
}; |