-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patheslint.config.js
More file actions
30 lines (29 loc) · 857 Bytes
/
eslint.config.js
File metadata and controls
30 lines (29 loc) · 857 Bytes
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
import moduleConfig from '@trigen/eslint-config/module'
import tsTypeCheckedConfig from '@trigen/eslint-config/typescript-type-checked'
import testConfig from '@trigen/eslint-config/test'
import rootConfig from '../../eslint.config.js'
export default [
...rootConfig,
...moduleConfig,
...tsTypeCheckedConfig,
...testConfig,
{
languageOptions: {
parserOptions: {
projectService: true,
tsconfigRootDir: import.meta.dirname
}
},
rules: {
'@typescript-eslint/naming-convention': 'off',
'@typescript-eslint/no-explicit-any': 'off',
'jsdoc/require-returns-description': 'off',
'jsdoc/reject-any-type': 'off',
'import/no-default-export': 'off',
'consistent-return': 'off',
'no-magic-numbers': 'off',
'no-return-assign': 'off',
'no-console': 'off'
}
}
]