2020-10-27 11:27:17 +01:00
|
|
|
'use strict';
|
|
|
|
|
2020-01-24 15:39:14 +01:00
|
|
|
module.exports = {
|
|
|
|
extends: [
|
|
|
|
'eslint:recommended',
|
|
|
|
'prettier',
|
|
|
|
'plugin:import/errors',
|
|
|
|
'plugin:import/warnings',
|
|
|
|
'plugin:node/recommended',
|
2021-06-30 20:00:03 +02:00
|
|
|
// 'plugin:jsdoc/recommended',
|
2020-01-24 15:39:14 +01:00
|
|
|
],
|
2021-06-28 22:37:19 +02:00
|
|
|
plugins: ['jsdoc'],
|
2020-01-24 15:39:14 +01:00
|
|
|
env: {
|
|
|
|
es6: true,
|
|
|
|
node: true,
|
|
|
|
jest: true,
|
|
|
|
},
|
|
|
|
globals: {
|
|
|
|
strapi: false,
|
|
|
|
},
|
|
|
|
rules: {
|
2021-06-30 20:00:03 +02:00
|
|
|
// 'jsdoc/require-jsdoc': [
|
|
|
|
// 'warn',
|
|
|
|
// {
|
|
|
|
// publicOnly: true,
|
|
|
|
// require: {
|
|
|
|
// ArrowFunctionExpression: true,
|
|
|
|
// ClassDeclaration: true,
|
|
|
|
// ClassExpression: true,
|
|
|
|
// FunctionDeclaration: true,
|
|
|
|
// FunctionExpression: true,
|
|
|
|
// MethodDefinition: true,
|
|
|
|
// },
|
|
|
|
// },
|
|
|
|
// ],
|
2020-10-22 16:43:51 +02:00
|
|
|
'node/no-unpublished-require': 'off',
|
|
|
|
'require-atomic-updates': 'off',
|
|
|
|
'no-process-exit': 'off',
|
|
|
|
strict: ['error', 'global'],
|
|
|
|
'import/order': 'error',
|
2020-10-27 11:27:17 +01:00
|
|
|
'import/no-cycle': 'error',
|
|
|
|
'import/no-useless-path-segments': 'error',
|
|
|
|
'import/first': 'error',
|
|
|
|
'import/extensions': ['error', 'never'],
|
|
|
|
'import/newline-after-import': 'error',
|
|
|
|
'node/exports-style': ['error', 'module.exports'],
|
|
|
|
'node/no-new-require': 'error',
|
|
|
|
'node/no-path-concat': 'error',
|
|
|
|
'node/no-callback-literal': 'error',
|
|
|
|
'node/handle-callback-err': 'error',
|
2021-05-19 19:02:41 +02:00
|
|
|
'one-var': ['error', 'never'],
|
2020-01-24 15:39:14 +01:00
|
|
|
},
|
|
|
|
};
|