-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy patheslint.config.mjs
More file actions
52 lines (51 loc) · 1.13 KB
/
eslint.config.mjs
File metadata and controls
52 lines (51 loc) · 1.13 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
import js from '@eslint/js'
import globals from 'globals'
import reactHooks from 'eslint-plugin-react-hooks'
import tseslint from 'typescript-eslint'
export default [
// Global ignores
{
ignores: [
'.next/**',
'node_modules/**',
'dist/**',
'build/**',
'out/**',
'*.config.js',
'*.config.mjs',
'*.config.cjs',
'next-env.d.ts',
],
},
// Base JS config
js.configs.recommended,
// TypeScript configs
...tseslint.configs.recommended,
// Main configuration for TypeScript files
{
files: ['**/*.{ts,tsx,js,jsx}'],
plugins: {
'react-hooks': reactHooks,
},
rules: {
...reactHooks.configs.recommended.rules,
'@typescript-eslint/no-explicit-any': 'warn',
'@typescript-eslint/no-unused-vars': [
'error',
{
argsIgnorePattern: '^_',
varsIgnorePattern: '^_',
},
],
'no-console': ['warn', { allow: ['warn', 'error'] }],
},
languageOptions: {
ecmaVersion: 2022,
sourceType: 'module',
globals: {
...globals.browser,
...globals.node,
},
},
},
]