-
Notifications
You must be signed in to change notification settings - Fork 1
/
eslint.config.js
102 lines (100 loc) · 2.67 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
import js from '@eslint/js';
import react from 'eslint-plugin-react';
import reactHooks from 'eslint-plugin-react-hooks';
import simpleImportSort from 'eslint-plugin-simple-import-sort';
import storybook from 'eslint-plugin-storybook';
import tseslint from 'typescript-eslint';
export default [
js.configs.recommended,
react.configs.flat.recommended,
...tseslint.configs.recommended,
...storybook.configs['flat/recommended'],
{
files: ['**/*.js', '**/*.ts', '**/*.tsx'],
languageOptions: {
parser: tseslint.parser,
parserOptions: {
project: true,
tsconfigRootDir: import.meta.dirname,
},
},
plugins: {
react,
'react-hooks': reactHooks,
'@typescript-eslint': tseslint.plugin,
'simple-import-sort': simpleImportSort,
},
rules: {
...reactHooks.configs.recommended.rules,
'react/prop-types': 'off',
'react/react-in-jsx-scope': 'off',
'@typescript-eslint/no-redundant-type-constituents': 'off',
'@typescript-eslint/no-non-null-assertion': 'off',
'@typescript-eslint/no-floating-promises': 'off', // we don't always care about unhandled promises
'@typescript-eslint/prefer-nullish-coalescing': 'off', // we sometimes want to use || instead of ??
'@typescript-eslint/no-misused-promises': [
'error',
{ checksVoidReturn: false },
],
'simple-import-sort/imports': [
'error',
{
groups: [
// `react` first
['^react?(.+)'],
// Packages starting with `@`
['^@'],
// Packages starting with `~`
['^~'],
// Imports starting with `./`, `../` `src`
[
'^\\.\\.(?!/?$)',
'^\\.\\./?$',
'^\\./(?=.*/)(?!/?$)',
'^\\.(?!/?$)',
'^\\./?$',
'src',
],
// Imports starting with a character
['^[a-z]'],
// Style imports
['^.+\\.s?css$'],
// Side effect imports
['^\\u0000'],
],
},
],
},
settings: {
react: {
pragma: 'React',
version: 'detect',
},
},
},
{
files: [
'*.test.*',
'*.stories.*',
'./src/providers/AuthProvider/**',
'./src/atoms/utils/auth_environment.ts',
],
rules: {
'no-console': ['warn', { allow: ['warn', 'error'] }],
},
},
{
ignores: [
'!.storybook',
'vite.config.ts',
'vitest.config.ts',
'playwright.config.ts',
'src/api',
'src/config',
'**/*.js',
'**/*.md',
'**/*.yaml',
'**/*.json',
],
},
];