-
Notifications
You must be signed in to change notification settings - Fork 0
/
eslint.config.js
81 lines (79 loc) · 2.4 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
import globals from "globals";
import eslintJs from "@eslint/js";
import eslintTs from "typescript-eslint";
import { fixupPluginRules } from '@eslint/compat';
//import eslintConfigPrettier from "eslint-config-prettier";
import eslintPluginPrettierRecommended from "eslint-plugin-prettier/recommended";
import eslintReact from "eslint-plugin-react";
import eslintPluginReactHooks from 'eslint-plugin-react-hooks';
//import eslintImport from "eslint-plugin-import";
import eslintStorybook from "eslint-plugin-storybook";
import jest from "eslint-plugin-jest";
export default [
{
files: ["**/*.{js,mjs,cjs,ts,jsx,tsx}"],
ignores: [
'/.git/*',
'/.github/*',
'/.husky/*',
'/.storybook/*',
'/.vscode/*',
'/es/*',
'/dist/*',
'/node-modules/*',
'/stories/*',
],
},
//eslintImport.configs.recommended,
eslintJs.configs.recommended,
...eslintTs.configs.recommended,
eslintPluginPrettierRecommended,
//eslintStorybook.configs.recommended,
{
languageOptions: {
parserOptions: { ecmaFeatures: { jsx: true } },
globals: { ...globals.browser },
},
},
{
plugins: {
'react': eslintReact,
'react-hooks': fixupPluginRules(eslintPluginReactHooks),
//'storybook': fixupPluginRules(eslintStorybook),
},
},
{
rules: {
...eslintPluginReactHooks.configs.recommended.rules,
'@typescript-eslint/no-use-before-define': 'off',
'@typescript-eslint/no-explicit-any': 'off',
'@typescript-eslint/no-empty-function': 'off',
'@typescript-eslint/no-unused-vars': 'off',
'@typescript-eslint/no-unused-expressions': 'off',
'@typescript-eslint/no-unsafe-function-type': 'off',
'@typescript-eslint/ban-ts-comment': 'off',
'@typescript-eslint/naming-convention': [
'error',
{
selector: 'variableLike',
format: ['camelCase', 'PascalCase', 'UPPER_CASE'],
},
],
'react/jsx-props-no-spreading': 'off',
'react/prop-types': 'off',
'react/display-name': 'off',
'import/no-anonymous-default-export': 'off',
'import/prefer-default-export': 'off',
},
},
{
files: ["tests/**"],
...jest.configs['flat/recommended'],
rules: {
...jest.configs['flat/recommended'].rules,
'@typescript-eslint/no-unused-vars': 'off',
'jest/valid-expect': 0,
'jest/valid-expect-in-promise': 0,
},
},
];