-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreact.js
53 lines (53 loc) · 1.44 KB
/
react.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
module.exports = {
"parser": "@typescript-eslint/parser",
"plugins": ["@typescript-eslint", "prettier", "react-hooks", "unicorn"],
"extends": [
"airbnb",
"plugin:@typescript-eslint/recommended",
"prettier",
"plugin:react-hooks/recommended"
],
"settings": {
"import/resolver": {
"node": {
"extensions": [".js", ".jsx", ".ts", ".tsx"]
}
}
},
"rules": {
'unicorn/filename-case': [
'error',
{
case: 'kebabCase',
},
],
"react/jsx-props-no-spreading": 0,
"react/jsx-filename-extension": ["error", { "extensions": [".ts", ".tsx", ".js", ".jsx"] }],
"react/jsx-handler-names": "error",
"react/boolean-prop-naming": "error",
"import/prefer-default-export": 0,
"import/no-default-export": 2,
"prettier/prettier": "error",
"react/destructuring-assignment": 0,
"@typescript-eslint/explicit-function-return-type": 0,
"@typescript-eslint/no-explicit-any": 0,
"react-hooks/rules-of-hooks": "error",
"react-hooks/exhaustive-deps": "warn",
'import/extensions': 0,
"arrow-body-style": "off",
"react/prop-types": "off",
"no-use-before-define": "off",
"@typescript-eslint/no-use-before-define": ["error"],
"@typescript-eslint/ban-types": [
"error",
{
"types": {
"{}": {
"message": "Use Record instead",
"fixWith": "Record<string, any>"
}
}
}
]
}
}