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
|
- // @ts-check
- import reactHooks from 'eslint-plugin-react-hooks';
- import reactRefresh from 'eslint-plugin-react-refresh';
- import eslint from '@eslint/js';
- import jest from 'eslint-plugin-jest';
- import eslintPluginUnicorn from 'eslint-plugin-unicorn';
- import unusedImports from 'eslint-plugin-unused-imports';
- import globals from 'globals';
- import tseslint from 'typescript-eslint';
- export default [
- ...tseslint.config(eslint.configs.recommended, ...tseslint.configs.recommended),
- {
- ...jest.configs['flat/recommended'],
- rules: {
- ...jest.configs['flat/recommended'].rules,
- ...jest.configs['flat/style'].rules,
- 'jest/consistent-test-it': 'error',
- 'jest/expect-expect': 'error',
- 'jest/no-test-return-statement': 'error',
- 'jest/prefer-called-with': 'error',
- 'jest/prefer-expect-resolves': 'error',
- 'jest/prefer-hooks-in-order': 'error',
- 'jest/prefer-hooks-on-top': 'error',
- 'jest/prefer-jest-mocked': 'error',
- 'jest/prefer-spy-on': 'error',
- 'jest/require-to-throw-message': 'error',
- 'jest/require-top-level-describe': 'error',
- },
- },
- {
- ignores: ['dist/**/*', 'site/.docusaurus/**/*', 'site/build/**/*', '**/venv/**/*'],
- },
- {
- languageOptions: {
- ecmaVersion: 2022,
- globals: globals.node,
- sourceType: 'module',
- },
- plugins: {
- 'react-hooks': reactHooks,
- 'react-refresh': reactRefresh,
- 'unused-imports': unusedImports,
- unicorn: eslintPluginUnicorn,
- },
- rules: {
- '@typescript-eslint/ban-ts-comment': 0,
- '@typescript-eslint/ban-types': 0,
- '@typescript-eslint/consistent-type-imports': 'error',
- '@typescript-eslint/no-explicit-any': 0,
- '@typescript-eslint/no-unsafe-function-type': 0,
- '@typescript-eslint/no-unused-vars': [
- 'error',
- {
- args: 'none',
- ignoreRestSiblings: false,
- vars: 'all',
- varsIgnorePattern: '^_',
- },
- ],
- '@typescript-eslint/no-use-before-define': 'error',
- '@typescript-eslint/no-var-requires': 0,
- curly: 'error',
- 'no-case-declarations': 0,
- 'no-control-regex': 0,
- 'no-empty': 0,
- 'no-unused-expressions': 'error',
- 'no-useless-escape': 0,
- 'object-shorthand': 'error',
- 'prefer-const': 'error',
- 'react-refresh/only-export-components': 'warn',
- 'unicorn/no-lonely-if': 'error',
- 'unicorn/no-negated-condition': 'error',
- 'unicorn/prefer-number-properties': 'error',
- 'unused-imports/no-unused-imports': 'error',
- },
- },
- {
- files: ['examples/**', 'site/**'],
- rules: {
- '@typescript-eslint/no-namespace': 0,
- '@typescript-eslint/no-require-imports': 0,
- '@typescript-eslint/no-unused-vars': 0,
- '@typescript-eslint/no-var-requires': 0,
- },
- },
- ];
|