-
-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy patheslint.config.js
61 lines (60 loc) · 2.02 KB
/
eslint.config.js
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
const nx = require('@nx/eslint-plugin');
module.exports = [
...nx.configs['flat/base'],
...nx.configs['flat/typescript'],
...nx.configs['flat/javascript'],
{
ignores: ['**/dist', 'apps/api/src/assets/**/*'],
},
{
files: ['**/*.ts', '**/*.tsx', '**/*.js', '**/*.jsx'],
rules: {
'no-empty-pattern': 'off',
'@nx/enforce-module-boundaries': [
'error',
{
allow: [],
depConstraints: [
{
sourceTag: 'scope:server',
onlyDependOnLibsWithTags: ['scope:server', 'scope:type-only', 'scope:shared', 'scope:any'],
},
{
sourceTag: 'scope:browser',
onlyDependOnLibsWithTags: ['scope:browser', 'scope:type-only', 'scope:shared', 'scope:any'],
},
{
sourceTag: 'scope:e2e',
onlyDependOnLibsWithTags: ['scope:server', 'scope:browser', 'scope:type-only', 'scope:shared', 'scope:e2e', 'scope:any'],
},
{
sourceTag: 'scope:worker',
onlyDependOnLibsWithTags: ['scope:allow-worker-import', 'scope:type-only', 'scope:shared', 'scope:any'],
},
{
sourceTag: 'scope:allow-worker-import',
onlyDependOnLibsWithTags: ['scope:allow-worker-import', 'scope:type-only', 'scope:any'],
},
{
sourceTag: '*',
onlyDependOnLibsWithTags: ['*'],
},
],
},
],
'@typescript-eslint/explicit-module-boundary-types': 'off',
},
},
{
files: ['**/*.ts', '**/*.tsx'],
rules: {
'@typescript-eslint/explicit-function-return-type': 'off',
'@typescript-eslint/explicit-member-accessibility': 'off',
'@typescript-eslint/no-empty-interface': 'warn',
'@typescript-eslint/no-empty-object-type': 'warn',
'@typescript-eslint/no-explicit-any': 'warn',
'@typescript-eslint/no-parameter-properties': 'off',
'@typescript-eslint/no-unused-vars': 'warn',
},
},
];