forked from brainstormforce/header-footer-elementor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.js
50 lines (49 loc) · 854 Bytes
/
.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
/**
* Internal dependencies
*/
module.exports = {
root: true,
extends: [
'plugin:@wordpress/eslint-plugin/recommended-with-formatting',
'plugin:import/recommended',
'plugin:eslint-comments/recommended',
],
env: {
browser: true,
},
parserOptions: {
requireConfigFile: false,
babelOptions: {
presets: [ require.resolve( '@wordpress/babel-preset-default' ) ],
},
},
overrides: [
{
files: [
'tests/e2e/**/*.js',
],
extends: [
'plugin:@wordpress/eslint-plugin/test-e2e',
'plugin:jest/all',
],
settings: {
jest: {
version: 26,
},
},
rules: {
'jest/lowercase-name': [
'error',
{
ignore: [
'describe',
],
},
],
'jest/no-hooks': 'off',
'jest/prefer-expect-assertions': 'off',
'jest/prefer-inline-snapshots': 'off',
},
},
],
};