-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patheslint.config.mjs
126 lines (123 loc) · 3.51 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
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
125
126
import js from '@eslint/js';
import ts from 'typescript-eslint';
import prettierConfigRecommended from 'eslint-plugin-prettier/recommended';
import storybookPlugin from 'eslint-plugin-storybook';
import reactPlugin from 'eslint-plugin-react';
import reactHooks from 'eslint-plugin-react-hooks';
import nextPlugin from '@next/eslint-plugin-next';
import globals from 'globals';
import { fixupPluginRules } from '@eslint/compat';
/** @type {import('typescript-eslint').Config} */
export default [
js.configs.recommended,
...ts.configs.recommended,
...storybookPlugin.configs['flat/csf-strict'],
{
// also work on typescript files with extensions tsx
files: ['**/*.{js,jsx,ts,tsx}'],
},
{
files: ['pages/api/**/*'],
languageOptions: {
globals: {
...globals.node,
},
},
},
{
languageOptions: {
globals: {
...globals.browser,
},
},
},
{
files: ['**/__tests__/*', '**/*.test.*'],
languageOptions: {
globals: {
...globals.jest,
},
},
},
{
plugins: {
'@next/next': fixupPluginRules(nextPlugin),
},
rules: {
...nextPlugin.configs.recommended.rules,
...nextPlugin.configs['core-web-vitals'].rules,
},
},
{
// TEMP: until all sources got fixed
rules: { '@typescript-eslint/no-explicit-any': 'off' },
},
{
// TEMP: until sources got changed
rules: {
// e.g. If you want a type meaning "any value", you probably want `unknown` instead
'@typescript-eslint/ban-ts-comment': 'off',
'@typescript-eslint/no-empty-object-type': 'off',
'@typescript-eslint/no-wrapper-object-types': 'warn',
'@typescript-eslint/no-unused-vars': 'off',
},
},
prettierConfigRecommended,
{
// TEMP: Some outdated, not properly formatted sources exist
rules: {
'prettier/prettier': 1,
},
},
{
files: ['**/*.{jsx,tsx}'],
plugins: {
react: fixupPluginRules(reactPlugin),
},
settings: { react: { version: 'detect' } },
rules: {
...reactPlugin.configs.recommended.rules,
// TEMP: code needs adoptions:
'react/react-in-jsx-scope': 0,
'react/prop-types': 0,
},
},
{
// TEMP code will need adoptions:
rules: {
'import/no-anonymous-default-export': 'off',
'no-undef': 1,
'no-console': 0,
},
},
{
plugins: { 'react-hooks': fixupPluginRules(reactHooks) },
rules: {
'react-hooks/rules-of-hooks': 'error',
'react-hooks/exhaustive-deps': 'error',
},
},
{
ignores: [
'**/node_modules',
'**/coverage',
'**/public',
'**/build',
'!**/.storybook',
'**/storybook-static/',
// generated by relay tools:
'relay/__generated__/',
// generated by graphql schema generator:
'lib/types/resolvers.d.ts',
'cypress',
'**/eval-reg-suit/',
'**/stuff/',
'**/stories',
'**/out_publish',
'.next/**',
'.yarn',
// TEMP: TODO: needs adoption. Next/jest is not compatible
'jest.config.js',
],
},
];