-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patheslint.config.mjs
133 lines (132 loc) · 3.36 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
127
128
129
130
131
132
133
import globals from 'globals';
import pluginJs from '@eslint/js';
import tseslint from 'typescript-eslint';
import pluginReact from 'eslint-plugin-react';
// import pluginReactNext from '@next/eslint-plugin-next';
import reactHooks from 'eslint-plugin-react-hooks';
import prettier from 'eslint-plugin-prettier';
import pluginImport from 'eslint-plugin-import';
import pluginJsxA11y from 'eslint-plugin-jsx-a11y';
import { fixupPluginRules } from '@eslint/compat';
export default [
{
settings: {
react: {
version: 'detect',
},
},
files: ['**/*.{js,mjs,cjs,ts,jsx,tsx}'],
...pluginReact.configs.flat.recommended,
languageOptions: {
...pluginReact.configs.flat.recommended.languageOptions,
globals: globals.browser,
},
plugins: {
react: pluginReact,
'react-hooks': fixupPluginRules(reactHooks),
import: pluginImport,
'jsx-a11y': pluginJsxA11y,
'@typescript-eslint': tseslint.plugin,
prettier,
},
rules: {
...reactHooks.configs.recommended.rules,
'no-use-before-define': 'off',
'no-case-declarations': 'off',
'no-underscore-dangle': 'off',
'react/jsx-filename-extension': [1, { extensions: ['.js', '.jsx', '.ts', '.tsx'] }],
'no-param-reassign': 'off',
'no-empty': 'warn',
'import/no-extraneous-dependencies': 'warn',
'react/jsx-props-no-spreading': [
'warn',
{
html: 'ignore',
custom: 'enforce',
explicitSpread: 'enforce',
exceptions: [
'DropdownItem',
'Element',
'FullCalendar',
'Leaf',
'NavItem',
'ReactSelect',
'CreatableSelect',
'Route',
'Table',
'Td',
'Th',
'ThResizer',
],
},
],
'react/no-unescaped-entities': ['error', { forbid: ['>', '}'] }],
'jsx-a11y/label-has-associated-control': [
'warn',
{
depth: 3,
},
],
'react-hooks/exhaustive-deps': 'error',
'react-hooks/rules-of-hooks': 'error',
'react/function-component-definition': [
2,
{
namedComponents: 'arrow-function',
unnamedComponents: 'arrow-function',
},
],
'react/no-arrow-function-lifecycle': 'off',
'react/no-invalid-html-attribute': 'off',
'react/no-unused-class-component-methods': 'off',
'import/no-anonymous-default-export': [
'error',
{
allowArray: true,
allowArrowFunction: false,
allowAnonymousClass: false,
allowAnonymousFunction: false,
allowCallExpression: true, // The true value here is for backward compatibility
allowLiteral: false,
allowObject: true,
},
],
'arrow-body-style': ['off'],
'react/jsx-key': ['error'],
'prettier/prettier': ['error'],
'react/require-default-props': ['off'],
},
},
{
ignores: [
'**/temp.js',
'config/*',
'node_modules/',
'.next/',
'src/components/icon/',
'src/assets',
'**.config.*',
],
},
pluginJs.configs.recommended,
...tseslint.configs.recommended,
pluginReact.configs.flat.recommended,
// pluginReactNext.configs.recommended,
{
rules: {
'@typescript-eslint/no-explicit-any': 'off',
'@typescript-eslint/ban-ts-comment': 'off',
'@typescript-eslint/ban-ts-ignore': 'off',
'template-curly-spacing': ['error', 'never'],
'react/jsx-curly-brace-presence': ['error', { props: 'never', children: 'never' }],
'react/self-closing-comp': [
'error',
{
component: true,
html: true,
},
],
'prefer-template': 'error',
},
},
];