-
Notifications
You must be signed in to change notification settings - Fork 68
/
eslint.config.mjs
129 lines (128 loc) · 2.94 KB
/
eslint.config.mjs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
import path from 'node:path';
import globals from 'globals';
import pluginJs from '@eslint/js';
import pluginReact from 'eslint-plugin-react';
import mochaPlugin from 'eslint-plugin-mocha';
import eslintConfigPrettier from 'eslint-config-prettier';
import testingLibrary from 'eslint-plugin-testing-library';
import jsxA11y from 'eslint-plugin-jsx-a11y';
import importPlugin from 'eslint-plugin-import';
import sonarjs from 'eslint-plugin-sonarjs';
export default [
{
files: ['**/*.js'],
ignores: ['frontend/**/*.{js,jsx}'],
...importPlugin.flatConfigs.recommended,
languageOptions: {
globals: globals.node,
sourceType: 'commonjs',
},
},
{
ignores: [
'test/frontend/**/*.{js,jsx}',
'rtl-test/**/*',
'public/*',
'!**/.eslintrc.*',
'migrations',
'apps',
'packages',
'dist',
'admin-client',
],
},
{
...mochaPlugin.configs.flat.recommended,
rules: {
'mocha/no-mocha-arrows': 'off',
},
},
{
rules: {
'no-unused-vars': [
'error',
{
argsIgnorePattern: '^_',
varsIgnorePattern: '^_',
caughtErrorsIgnorePattern: '^_',
},
],
},
},
{
files: ['frontend/**/*.{js,jsx}'],
...importPlugin.flatConfigs.recommended,
settings: {
react: {
version: 'detect',
},
'import/resolver': {
webpack: {
config: path.resolve('.', './webpack.config.js'),
},
},
},
languageOptions: {
...pluginReact.configs.flat.recommended.languageOptions,
parserOptions: {
ecmaFeatures: {
jsx: true,
},
},
globals: {
...globals.browser,
...globals.mocha,
...globals.jest,
global: false,
process: false,
},
},
},
{
files: ['test/**/*.{js,jsx}', '**/*.test.{js,jsx}', '**/*.spec.{js,jsx}'],
...importPlugin.flatConfigs.recommended,
...testingLibrary.configs['flat/react'],
languageOptions: {
ecmaVersion: 'latest',
},
},
{
ignores: ['**/*.test.*', 'test/**/*', 'scripts/**/*', 'e2e/**/*', 'config/**/*'],
...sonarjs.configs.recommended,
rules: {
...sonarjs.configs.recommended.rules,
'sonarjs/cognitive-complexity': ['error', 16],
'sonarjs/todo-tag': 'off',
},
},
pluginReact.configs.flat['jsx-runtime'],
pluginReact.configs.flat.recommended,
jsxA11y.flatConfigs.recommended,
pluginJs.configs.recommended,
eslintConfigPrettier,
{
settings: {
react: {
version: 'detect',
},
'import/resolver': {
node: {
extensions: ['.js', '.jsx', '.ts', '.tsx'],
},
},
},
rules: {
'no-await-in-loop': 'error',
'no-console': 'error',
'no-param-reassign': 'error',
'no-plusplus': 'error',
'max-len': [
'error',
{
code: 90,
ignoreUrls: true,
},
],
},
},
];