mirror of
https://github.com/strapi/strapi.git
synced 2025-08-17 13:16:08 +00:00
69 lines
1.4 KiB
JavaScript
69 lines
1.4 KiB
JavaScript
module.exports = {
|
|
parser: 'babel-eslint',
|
|
extends: [
|
|
'eslint:recommended',
|
|
'plugin:react/recommended',
|
|
'plugin:redux-saga/recommended',
|
|
'prettier',
|
|
],
|
|
plugins: ['react', 'redux-saga'],
|
|
env: {
|
|
browser: true,
|
|
commonjs: true,
|
|
es6: true,
|
|
node: true,
|
|
jest: true,
|
|
mocha: true,
|
|
},
|
|
parserOptions: {
|
|
ecmaVersion: 2018,
|
|
ecmaFeatures: {
|
|
jsx: true,
|
|
},
|
|
sourceType: 'module',
|
|
},
|
|
// all readonly
|
|
globals: {
|
|
strapi: false,
|
|
window: false,
|
|
cy: false,
|
|
Cypress: false,
|
|
expect: false,
|
|
assert: false,
|
|
chai: false,
|
|
// TODO: put all this in process.env in webpack to avoid having to set them here
|
|
REMOTE_URL: true,
|
|
BACKEND_URL: true,
|
|
PUBLIC_PATH: true,
|
|
MODE: true,
|
|
NODE_ENV: true,
|
|
},
|
|
rules: {
|
|
'generator-star-spacing': 0,
|
|
'no-console': 0,
|
|
},
|
|
settings: {
|
|
react: {
|
|
version: '16.5.2',
|
|
},
|
|
},
|
|
overrides: [
|
|
{
|
|
files: ['**/admin/**', '**/strapi-helper-plugin/**'],
|
|
rules: {
|
|
'redux-saga/no-unhandled-errors': 1,
|
|
'react/no-unescaped-entities': 1,
|
|
'react/prop-types': 1,
|
|
'react/jsx-no-target-blank': 1,
|
|
'react/no-direct-mutation-state': 1,
|
|
'react/display-name': 1,
|
|
'react/jsx-no-target-blank': 1,
|
|
'no-unused-vars': 1,
|
|
'no-undef': 1,
|
|
'no-dupe-keys': 1,
|
|
'no-irregular-whitespace': 1,
|
|
},
|
|
},
|
|
],
|
|
};
|