-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathreact.ts
110 lines (103 loc) · 3.23 KB
/
react.ts
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
import { fixupPluginRules } from "@eslint/compat";
import type { TSESLint } from "@typescript-eslint/utils";
import eslintPluginReact from "eslint-plugin-react";
// @ts-expect-error eslint-plugin-react-hooks is not typed
import eslintPluginReactHooks from "eslint-plugin-react-hooks";
import reactRefresh from "eslint-plugin-react-refresh";
import jsx from "./jsx";
const rules: TSESLint.FlatConfig.Rules = {
// React
"react/boolean-prop-naming": 2,
"react/button-has-type": 2,
"react/default-props-match-prop-types": 2,
"react/destructuring-assignment": 0,
"react/display-name": 0,
"react/forbid-component-props": 0,
"react/forbid-dom-props": 0,
"react/forbid-elements": 0,
"react/forbid-foreign-prop-types": 0,
"react/forbid-prop-types": 0,
"react/function-component-definition": 0,
"react/hook-use-state": 2,
"react/iframe-missing-sandbox": 2,
"react/jsx-filename-extension": [1, { extensions: [".jsx", ".tsx"] }],
"react/no-access-state-in-setstate": 2,
"react/no-adjacent-inline-elements": 0,
"react/no-array-index-key": 0,
"react/no-arrow-function-lifecycle": 2,
"react/no-children-prop": 2,
"react/no-danger": 2,
"react/no-danger-with-children": 2,
"react/no-deprecated": 2,
"react/no-did-mount-set-state": 2,
"react/no-did-update-set-state": 2,
"react/no-direct-mutation-state": 2,
"react/no-find-dom-node": 2,
"react/no-invalid-html-attribute": 2,
"react/no-is-mounted": 2,
"react/no-multi-comp": 0,
"react/no-namespace": 2,
"react/no-redundant-should-component-update": 2,
"react/no-render-return-value": 2,
"react/no-set-state": 2,
"react/no-string-refs": 2,
"react/no-this-in-sfc": 2,
"react/no-typos": 2,
"react/no-unescaped-entities": 0,
"react/no-unknown-property": 2,
"react/no-unsafe": 2,
"react/no-unstable-nested-components": 2,
"react/no-unused-class-component-methods": 2,
"react/no-unused-prop-types": 2,
"react/no-unused-state": 2,
"react/no-will-update-set-state": 2,
"react/prefer-es6-class": 2,
"react/prefer-exact-props": 0,
"react/prefer-read-only-props": 2,
"react/prefer-stateless-function": [
2,
{
ignorePureComponents: true,
},
],
"react/prop-types": 2,
"react/react-in-jsx-scope": 0,
"react/require-default-props": 0,
"react/require-optimization": 0,
"react/require-render-return": 2,
"react/self-closing-comp": 2,
"react/sort-default-props": 2,
"react/sort-comp": 2,
"react/sort-prop-types": 2,
"react/state-in-constructor": [2, "always"],
"react/static-property-placement": 2,
"react/style-prop-object": 2,
"react/void-dom-elements-no-children": 2,
// React Hooks
"react-hooks/exhaustive-deps": 2,
"react-hooks/rules-of-hooks": 2,
// React Refresh
"react-refresh/only-export-components": 1,
// Unicorn
"unicorn/consistent-function-scoping": 0, // We disable this because in React it's a common thing to have functions in functions
};
const settings: TSESLint.FlatConfig.Settings = {
react: {
version: "detect",
},
};
const config: TSESLint.FlatConfig.ConfigArray = [
// @ts-expect-error eslint-plugin-react is poorly typed
...jsx,
{
// @ts-expect-error eslint-plugin-react is poorly typed
plugins: {
react: eslintPluginReact,
"react-refresh": reactRefresh,
"react-hooks": fixupPluginRules(eslintPluginReactHooks),
},
rules,
settings,
},
];
export default config;