We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9bd9dfa commit b1e46cfCopy full SHA for b1e46cf
.eslintrc
@@ -2,7 +2,8 @@
2
"root": true,
3
"env": {
4
"browser": true,
5
- "node": true
+ "node": true,
6
+ "jest/globals": true
7
},
8
"parserOptions": {
9
"project": [
@@ -12,14 +13,17 @@
12
13
14
"plugins": [
15
"@typescript-eslint",
16
+ "jest",
17
"import"
18
],
19
"extends": [
20
"airbnb",
21
"airbnb/hooks",
22
"airbnb-typescript",
23
"plugin:@typescript-eslint/recommended",
- "plugin:@typescript-eslint/recommended-requiring-type-checking"
24
+ "plugin:@typescript-eslint/recommended-requiring-type-checking",
25
+ "plugin:jest/recommended",
26
+ "plugin:jest/style"
27
28
"rules": {
29
"max-len": [
@@ -48,4 +52,4 @@
48
52
49
53
"@typescript-eslint/lines-between-class-members": "off"
50
54
}
51
-}
55
+}
0 commit comments