-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.mjs
124 lines (117 loc) · 3.06 KB
/
.eslintrc.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
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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
module.exports = {
root: true,
parser: '@typescript-eslint/parser',
extends: [
require.resolve('@vercel/style-guide/eslint/browser'),
require.resolve('@vercel/style-guide/eslint/react'),
require.resolve('@vercel/style-guide/eslint/next'),
require.resolve('@vercel/style-guide/eslint/typescript'),
],
settings: {
'import/resolver': {
typescript: {
project: './tsconfig.lint.json',
},
node: {
paths: ['src'],
extensions: ['.js', '.jsx', '.ts', '.tsx', '.d.ts'],
},
},
},
parserOptions: {
project: './tsconfig.lint.json',
},
plugins: ['simple-import-sort'],
rules: {
'simple-import-sort/exports': 'error',
'simple-import-sort/imports': [
'error',
{
/**
* Import Sorting Group Order:
* - React & Next imports
* - Third-party libraries
* - Local imports
* - CSS imports
*/
groups: [
// 1. External libraries and packages
['^react', '^next', '^(?!@/)(@\\w)', '^\\w'],
// 2. Local alias imports (e.g., '@/...')
['^@/'],
// 3. Relative imports
['^\\.'],
// 4. CSS imports
['^.+\\.s?css$'],
],
},
],
'import/order': 'off',
/**
* Warn about usage of `any` type, no error to allow for quick prototyping
*/
'@typescript-eslint/no-explicit-any': 1,
'@typescript-eslint/no-unsafe-member-access': 'warn',
'@typescript-eslint/no-unsafe-return': 'warn',
/**
* Enforce arrow function component definitions
*/
'react/function-component-definition': [
'error',
{
namedComponents: 'arrow-function',
unnamedComponents: 'arrow-function',
},
],
},
overrides: [
/**
* Sanity Overrides (+ enable Next.js default exports for routes)
*/
{
files: ['**/sanity.cli.ts', '**/*.config.ts', '**/*.config.js', 'src/app/**', '**/*.d.ts'],
rules: {
'import/no-default-export': 'off',
},
},
{
files: ['**/sanity.types.ts'],
rules: {
'@typescript-eslint/consistent-type-definitions': 'off',
'@typescript-eslint/array-type': 'off',
'import/first': 'off',
'import/newline-after-import': 'off',
'@typescript-eslint/no-redundant-type-constituents': 'off',
},
},
{
files: ['src/sanity/schemas/**'],
rules: {
// Allows for preview display data to not have to be manually typed in all 50+ files
'@typescript-eslint/no-unsafe-assignment': 'warn',
},
},
/**
* Jest overrides
*/
{
files: ['**/*.test.ts?(x)', '**/*.spec.ts?(x)', '**/__tests__/**', 'test-helpers/**'],
env: {
'jest/globals': true,
},
plugins: ['jest'],
extends: ['plugin:jest/recommended'],
},
/**
* Cypress Overrides
*/
{
files: ['cypress/**/*.ts'],
env: {
'cypress/globals': true,
},
plugins: ['cypress'],
extends: ['plugin:cypress/recommended'],
},
],
}