-
-
Notifications
You must be signed in to change notification settings - Fork 6.5k
Expand file tree
/
Copy patheslint.config.js
More file actions
104 lines (97 loc) · 2.68 KB
/
eslint.config.js
File metadata and controls
104 lines (97 loc) · 2.68 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
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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
import js from '@eslint/js';
import * as importX from 'eslint-plugin-import-x';
import globals from 'globals';
import tseslint from 'typescript-eslint';
export default tseslint.config(
js.configs.recommended,
tseslint.configs.recommended,
tseslint.configs.stylistic,
importX.flatConfigs.typescript,
{
ignores: [
'node_modules',
'.turbo',
'.next',
'build',
'lcov.info',
'global.d.ts',
'junit.xml',
'storybook-static/**',
'**/.wrangler',
'**/.open-next',
'test-results',
'playwright-report',
'dist',
],
},
{
languageOptions: {
globals: {
...globals.browser,
...globals.nodeBuiltin,
},
},
rules: {
'@typescript-eslint/array-type': ['error', { default: 'generic' }],
'@typescript-eslint/consistent-type-definitions': ['error', 'type'],
'@typescript-eslint/no-empty-function': 'off',
'import-x/namespace': 'off',
'import-x/no-named-as-default-member': 'off',
'import-x/no-unresolved': 'off',
'import-x/order': [
'error',
{
groups: [
'builtin',
'external',
'internal',
'object',
'type',
['sibling', 'parent'],
'index',
],
pathGroups: [
{
pattern: '{.,..}/**/*.css',
group: 'sibling',
position: 'after',
},
{
pattern: './**/*.css',
group: 'sibling',
position: 'after',
},
{
pattern: '../**/*.css',
group: 'sibling',
position: 'after',
},
],
pathGroupsExcludedImportTypes: ['type'],
'newlines-between': 'always',
alphabetize: {
order: 'asc',
caseInsensitive: true,
},
},
],
'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',
},
],
'object-shorthand': 'error',
curly: ['error', 'all'],
},
}
);