-
-
Notifications
You must be signed in to change notification settings - Fork 6.3k
/
Copy patheslint.config.js
88 lines (82 loc) · 2.77 KB
/
eslint.config.js
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
import { FlatCompat } from '@eslint/eslintrc';
import importX from 'eslint-plugin-import-x';
import * as mdx from 'eslint-plugin-mdx';
import react from 'eslint-plugin-react';
import tseslint from 'typescript-eslint';
// eslint-disable-next-line no-relative-import-paths/no-relative-import-paths
import baseConfig from '../../eslint.config.js';
const compat = new FlatCompat();
const compatConfig = compat.config({
extends: [
// https://github.com/vercel/next.js/discussions/49337
'plugin:@next/eslint-plugin-next/core-web-vitals',
// https://github.com/facebook/react/issues/28313
'plugin:react-hooks/recommended',
],
});
export default tseslint.config(
...baseConfig,
{
extends: [
react.configs.flat['jsx-runtime'],
...tseslint.configs.recommended,
importX.flatConfigs.typescript,
...compatConfig,
],
files: ['**/*.{js,md,mdx,mjs,ts,tsx}'],
rules: {
'@typescript-eslint/array-type': ['error', { default: 'generic' }],
'@typescript-eslint/consistent-type-imports': 'error',
'@typescript-eslint/no-require-imports': 'off',
'@next/next/no-duplicate-head': 'off',
'import-x/no-duplicates': 'off',
},
settings: { react: { version: 'detect' } },
},
{
files: ['**/*.{md,mdx}'],
extends: [mdx.configs.flat],
rules: {
'no-irregular-whitespace': 'off',
'@next/next/no-img-element': 'off',
'@next/next/no-html-link-for-pages': ['error', 'apps/site/pages/'],
// https://github.com/typescript-eslint/typescript-eslint/issues/9860
'@typescript-eslint/consistent-type-imports': 'off',
},
},
{
files: ['**/*.{mdx,tsx}'],
rules: {
'@typescript-eslint/consistent-type-definitions': ['error', 'type'],
'react/no-unescaped-entities': 'off',
'react/function-component-definition': [
'error',
{
namedComponents: 'arrow-function',
unnamedComponents: 'arrow-function',
},
],
'no-restricted-syntax': [
'error',
{
selector:
"ImportDeclaration[source.value='react'][specifiers.0.type='ImportDefaultSpecifier']",
message:
'Default React import not allowed since we use the TypeScript jsx-transform. If you need a global type that collides with a React named export (such as `MouseEvent`), try using `globalThis.MouseHandler`',
},
{
selector:
"ImportDeclaration[source.value='react'] :matches(ImportNamespaceSpecifier)",
message:
'Named * React import is not allowed. Please import what you need from React with Named Imports',
},
],
},
},
{
files: ['**/*.mjs', '**/*.test.*'],
rules: {
'no-relative-import-paths/no-relative-import-paths': 'off',
},
}
);