-
Notifications
You must be signed in to change notification settings - Fork 8
/
eslint.config.mjs
40 lines (38 loc) · 1.1 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
// @ts-check
import eslint from '@eslint/js';
import tseslint from 'typescript-eslint';
export default tseslint.config(
eslint.configs.recommended,
...tseslint.configs.recommended,
{
rules: {
"no-undef": "off",
"@typescript-eslint/no-empty-object-type": "off",
"@typescript-eslint/no-unsafe-function-type": "off",
"@typescript-eslint/no-require-imports": "off",
"@typescript-eslint/no-var-requires": "off",
'@typescript-eslint/ban-ts-comment': 'off',
'@typescript-eslint/no-explicit-any': 'off',
"@typescript-eslint/no-unused-expressions": "off",
'@typescript-eslint/no-unused-vars': ['warn', { argsIgnorePattern: '^_', varsIgnorePattern: '^_', caughtErrors: 'none' }],
}
},
{
files: ['test/**/*.ts', '*.test.ts'],
rules: {
'@typescript-eslint/no-unused-vars': 0
}
},
{
ignores: [
'node_modules',
'babel.config.js',
'rollup.config.js',
'dist',
"**/dist",
'bin',
'packages/client/src/api/dataPlaneComponents.ts',
'packages/client/src/api/controlPlaneComponents.ts'
]
}
);