-
Notifications
You must be signed in to change notification settings - Fork 1
/
.eslintrc.js
78 lines (78 loc) · 1.84 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
71
72
73
74
75
76
77
78
module.exports = {
parser: "@babel/eslint-parser",
plugins: ["prettier", "testing-library"],
extends: ["react-app", "plugin:prettier/recommended", "plugin:storybook/recommended"],
parserOptions: {
ecmaFeatures: {
jsx: true,
},
ecmaVersion: 2018,
sourceType: "module",
},
rules: {
"prettier/prettier": "error",
"react/forbid-component-props": [
"error",
{
forbid: [
{
propName: "data-test",
message: "Use `data-testid` instead of `data-test` attribute",
},
],
},
],
"react/forbid-dom-props": [
"error",
{
forbid: [
{
propName: "data-test",
message: "Use `data-testid` instead of `data-test` attribute",
},
],
},
],
},
settings: {
react: {
version: "detect",
},
},
overrides: [
{
files: ["**/*.ts?(x)"],
parser: "@typescript-eslint/parser",
extends: [
"react-app", // Uses the recommended rules from CRA.
"plugin:prettier/recommended", // Ensure this is last in the list.
],
parserOptions: {
ecmaFeatures: {
jsx: true,
},
ecmaVersion: 2018,
sourceType: "module",
},
rules: {
"prettier/prettier": "error",
},
settings: {
react: {
version: "detect",
},
},
},
{
files: ["**/__tests__/**/*.[jt]s?(x)", "**/?(*.)+(spec|test).[jt]s?(x)"],
extends: ["plugin:testing-library/react"],
rules: {
"testing-library/no-node-access": "warn",
"testing-library/no-container": "warn",
"testing-library/no-debugging-utils": "warn",
"testing-library/await-async-queries": "error",
"testing-library/no-await-sync-queries": "error",
},
},
],
};