-
Notifications
You must be signed in to change notification settings - Fork 68
/
eslint.config.mjs
105 lines (104 loc) · 2.32 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
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 sonarjsPlugin 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}',
'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}'],
settings: {
react: {
version: 'detect',
},
},
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}'],
...testingLibrary.configs['flat/react'],
},
pluginReact.configs.flat['jsx-runtime'],
pluginReact.configs.flat.recommended,
jsxA11y.flatConfigs.recommended,
pluginJs.configs.recommended,
// ignore for a future PR to minimize noise
// sonarjsPlugin.configs.recommended,
eslintConfigPrettier,
{
settings: {
react: {
version: 'detect',
},
},
rules: {
'no-await-in-loop': 'error',
'no-console': 'error',
'no-param-reassign': 'error',
'no-plusplus': 'error',
'max-len': [
'error',
{
code: 90,
ignoreUrls: true,
},
],
},
},
];