-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy patheslint.config.mjs
62 lines (60 loc) · 1.9 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
import js from '@eslint/js';
import nextPlugin from '@next/eslint-plugin-next';
import typescript from '@typescript-eslint/eslint-plugin';
import parserTypescript from '@typescript-eslint/parser';
import configPrettier from 'eslint-config-prettier';
import reactPlugin from 'eslint-plugin-react';
import reactHooksPlugin from 'eslint-plugin-react-hooks';
import globals from 'globals';
/** @type { import('eslint').Linter.Config[] } */
const config = [
{
ignores: ['**/node_modules', 'pnpm-lock.yaml', '.next', '.next-env.d.ts', '.turbo', '.output'],
},
{
languageOptions: {
ecmaVersion: 2022,
globals: { ...globals.browser, ...globals.es2021, ...globals.node },
},
rules: {
...js.configs.recommended.rules,
},
},
{
files: ['**/*.ts', '**/*.tsx'],
plugins: {
react: reactPlugin,
'react-hooks': reactHooksPlugin,
},
rules: {
...reactPlugin.configs['jsx-runtime'].rules,
...reactHooksPlugin.configs.recommended.rules,
'react-hooks/exhaustive-deps': 'off',
},
},
{
files: ['**/*.ts', '**/*.tsx'],
plugins: { '@typescript-eslint': typescript },
languageOptions: { parser: parserTypescript },
rules: {
...typescript.configs.recommended.rules,
'@typescript-eslint/no-unused-vars': ['warn', { argsIgnorePattern: '^_' }],
// '@typescript-eslint/no-explicit-any': ['warn'],
},
},
{
...configPrettier,
},
{
files: ['**/*.{js,mjs,cjs,ts,jsx,tsx}'],
plugins: {
'@next/next': nextPlugin,
},
rules: {
...nextPlugin.configs.recommended.rules,
...nextPlugin.configs['core-web-vitals'].rules,
'@next/next/no-img-element': 'off',
},
},
];
export default config;