-
-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy patheslint.config.js
More file actions
103 lines (102 loc) · 3.17 KB
/
eslint.config.js
File metadata and controls
103 lines (102 loc) · 3.17 KB
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
const nx = require('@nx/eslint-plugin');
module.exports = [
...nx.configs['flat/base'],
...nx.configs['flat/typescript'],
...nx.configs['flat/javascript'],
...nx.configs['flat/react'],
{
ignores: [
'**/assets/**/*',
'**/dist',
'**/generated/**/*',
'**/monaco/vs/**/*',
'**/public/**/*',
'**/vite.config.*.timestamp*',
'**/vitest.config.*.timestamp*',
],
},
{
files: ['**/*.ts', '**/*.tsx', '**/*.js', '**/*.jsx'],
rules: {
'react-hooks/set-state-in-effect': 'warn',
'no-empty-pattern': 'off',
'object-shorthand': 'warn',
'@typescript-eslint/explicit-module-boundary-types': '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: ['*'],
},
],
},
],
},
},
{
files: ['**/*.tsx'],
rules: {
'react-hooks/exhaustive-deps': ['warn', { additionalHooks: '(useNonInitialEffect)' }],
},
},
{
files: ['**/*.ts', '**/*.tsx'],
rules: {
'@typescript-eslint/explicit-function-return-type': 'off',
'@typescript-eslint/explicit-member-accessibility': 'off',
'@typescript-eslint/no-empty-object-type': 'off',
'@typescript-eslint/no-empty-interface': 'off',
'@typescript-eslint/no-explicit-any': 'warn',
'@typescript-eslint/no-parameter-properties': 'off',
'@typescript-eslint/no-unused-vars': [
'warn',
{
args: 'all',
argsIgnorePattern: '^_',
caughtErrors: 'all',
caughtErrorsIgnorePattern: '^_',
destructuredArrayIgnorePattern: '^_',
varsIgnorePattern: '^_',
ignoreRestSiblings: true, // Allows unused props when using rest spread
},
],
},
},
// Be much more lenient in tests
{
files: [
'**/*-e2e/**/*.{ts,tsx}',
'**/e2e-utils/**/*.{ts,tsx}',
'**/__tests__/**/*.{ts,tsx}',
'**/{src,tests}/**/*.{test,spec}.{js,mjs,cjs,ts,mts,cts,jsx,tsx}',
],
rules: {
'@typescript-eslint/no-explicit-any': 'off',
'@typescript-eslint/no-unused-vars': 'off',
'@typescript-eslint/no-non-null-assertion': 'off',
},
},
];