This repository has been archived by the owner on Aug 6, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
.eslintrc.js
70 lines (70 loc) · 1.61 KB
/
.eslintrc.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
module.exports = {
parser: "@typescript-eslint/parser",
env: {
browser: true,
es6: true,
},
extends: [
"plugin:@typescript-eslint/recommended",
"plugin:react/recommended",
"plugin:jest/all",
"plugin:prettier/recommended",
],
plugins: ["react", "@typescript-eslint", "react-hooks"],
globals: {
Atomics: "readonly",
SharedArrayBuffer: "readonly",
},
parserOptions: {
ecmaVersion: 2018,
sourceType: "module",
ecmaFeatures: {
jsx: true,
},
},
rules: {
"react/jsx-filename-extension": [
1,
{ extensions: [".js", ".jsx", ".ts", ".tsx"] },
],
"react/prop-types": 0,
"react/jsx-boolean-value": [1, "always"],
"import/prefer-default-export": 0,
"@typescript-eslint/no-unused-vars": [2, { args: "none" }],
"@typescript-eslint/no-explicit-any": 0,
"@typescript-eslint/no-non-null-assertion": 0,
"@typescript-eslint/explicit-function-return-type": [
"warn",
{
allowExpressions: true,
allowTypedFunctionExpressions: true,
},
],
"jest/no-hooks": 0,
"jest/lowercase-name": 0,
"react-hooks/rules-of-hooks": "error",
"react-hooks/exhaustive-deps": "error",
"no-duplicate-imports": "error",
},
overrides: [
{
files: [
"**/*.test.tsx",
"storybook/**/*.tsx",
"*.tsx",
"*.ts",
"**/*.tsx",
],
rules: {
"@typescript-eslint/no-empty-function": "off",
"jest/prefer-strict-equal": "off",
"jest/require-hook": "off",
},
},
],
settings: {
react: {
version: "detect",
},
},
};