-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy patheslint.config.js
More file actions
48 lines (46 loc) · 1.28 KB
/
eslint.config.js
File metadata and controls
48 lines (46 loc) · 1.28 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
import tseslint from 'typescript-eslint';
export default [
{
ignores: [
'**/dist/**',
'**/node_modules/**',
'coderio/**',
'scripts/**',
'skills/**',
'examples/**',
'src/tools/report-tool/template/**',
'coverage/**',
'tests/**',
'*.config.ts',
'*.config.js',
],
},
...tseslint.configs.recommended,
...tseslint.configs.recommendedTypeChecked,
{
languageOptions: {
parserOptions: {
projectService: true,
tsconfigRootDir: import.meta.dirname,
},
globals: {
__VERSION__: 'readonly',
},
},
rules: {
// TypeScript-specific rules
'@typescript-eslint/no-unused-vars': [
'error',
{
argsIgnorePattern: '^_',
varsIgnorePattern: '^_',
},
],
'@typescript-eslint/explicit-function-return-type': 'off',
'@typescript-eslint/explicit-module-boundary-types': 'off',
// JavaScript rules
'prefer-const': 'error',
'no-var': 'error',
},
},
];