-
Notifications
You must be signed in to change notification settings - Fork 40
/
Copy patheslint.config.mjs
73 lines (72 loc) · 1.79 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
import globals from 'globals';
import js from '@eslint/js';
import pluginJest from 'eslint-plugin-jest';
import pluginPromise from 'eslint-plugin-promise'
export default [
js.configs.recommended,
pluginPromise.configs['flat/recommended'],
{
rules: {
'no-unused-vars': [
'error',
{
args: 'none',
}
],
'promise/always-return': 'off',
'promise/catch-or-return': 'off',
'promise/no-callback-in-promise': 'off',
'promise/no-nesting': 'off',
},
},
{
files: ['test/**/*.js'],
...pluginJest.configs['flat/recommended'],
},
{
files: ['{config,migrations,script,server,shared,src,test}/**/*.js', '*.js'],
languageOptions: {
globals: {
...globals.node,
}
},
},
{
files: ['public/js/**/*.js', 'shared/**/*.js'],
languageOptions: {
globals: {
...globals.browser,
module: 'readonly',
$: 'readonly',
},
},
},
{
files: ['public/js/ng/**/*.js'],
languageOptions: {
globals: {
angular: 'readonly',
layerUtils: 'readonly',
},
},
},
{
files: ['test/client/**/*.js'],
languageOptions: {
globals: {
...globals.browser,
angular: 'readonly',
inject: 'readonly',
$: 'readonly',
}
},
},
{
ignores: [
'public/s/*',
'public/js/ng/**/*.templates.js',
'public/translations/*',
'doc/user/_build/*',
],
},
];