-
Notifications
You must be signed in to change notification settings - Fork 13
/
.eslintrc
79 lines (79 loc) · 1.65 KB
/
.eslintrc
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
{
"root": true,
"extends": [
"plugin:@wordpress/eslint-plugin/recommended-with-formatting",
"plugin:import/recommended",
"plugin:eslint-comments/recommended",
"plugin:react-hooks/recommended"
],
"globals": {
"wp": "readonly"
},
"settings": {
"jsdoc": {
"mode": "typescript"
}
},
"rules": {
"@wordpress/dependency-group": "error",
"@wordpress/i18n-text-domain": [
"error",
{
"allowedTextDomain": "genesis-custom-blocks"
}
],
"@wordpress/no-unused-vars-before-return": "off",
"@wordpress/react-no-unsafe-timeout": "error",
"comma-dangle": [
"error",
{
"arrays": "always-multiline",
"objects": "always-multiline",
"imports": "always-multiline",
"exports": "always-multiline",
"functions": "never"
}
],
"no-unused-vars": [
"error",
{
"ignoreRestSiblings": true
}
],
"jsx-a11y/alt-text": "warn"
},
"overrides": [
{
"files": [
"tests/e2e/**/*.js"
],
"extends": [
"plugin:@wordpress/eslint-plugin/test-e2e"
],
"rules": {
"jest/expect-expect": "off",
"jest/prefer-lowercase-title": [
"error",
{
"ignore": [
"describe"
]
}
],
"jest/no-hooks": "off",
"jest/require-top-level-describe": "off",
"jest/prefer-expect-assertions": "off",
"jest/prefer-inline-snapshots": "off"
}
},
{
"files": [
"**/*.test.js",
"**/test/*.js"
],
"env": {
"jest": true
}
}
]
}