52 lines
1.0 KiB
JavaScript
52 lines
1.0 KiB
JavaScript
module.exports = {
|
|
root: true,
|
|
extends: ['eslint:recommended', 'plugin:react/recommended'],
|
|
globals: {
|
|
wp: true,
|
|
},
|
|
env: {
|
|
node: true,
|
|
es6: true,
|
|
amd: true,
|
|
browser: true,
|
|
jquery: true,
|
|
},
|
|
parser: 'babel-eslint',
|
|
parserOptions: {
|
|
ecmaFeatures: {
|
|
experimentalObjectRestSpread: true,
|
|
globalReturn: true,
|
|
generators: false,
|
|
impliedStrict: true,
|
|
objectLiteralDuplicateProperties: false,
|
|
jsx: true,
|
|
},
|
|
ecmaVersion: 2017,
|
|
sourceType: 'module',
|
|
},
|
|
plugins: ['import', 'react-hooks'],
|
|
settings: {
|
|
react: {
|
|
version: 'detect',
|
|
},
|
|
'import/core-modules': [],
|
|
'import/ignore': [
|
|
'node_modules',
|
|
'\\.(coffee|scss|css|less|hbs|svg|json)$',
|
|
],
|
|
},
|
|
rules: {
|
|
'no-console': 0,
|
|
'comma-dangle': [
|
|
'error',
|
|
{
|
|
arrays: 'always-multiline',
|
|
objects: 'always-multiline',
|
|
imports: 'always-multiline',
|
|
exports: 'always-multiline',
|
|
functions: 'ignore',
|
|
},
|
|
],
|
|
},
|
|
};
|