forked from eventespresso/event-espresso-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc.js
39 lines (39 loc) · 832 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
module.exports = {
root: true,
extends: ['./eslint/config.js'],
overrides: [
{
files: ['test/e2e/**/*.js'],
globals: {
page: true,
browser: true,
wp: true,
eejsdata: true,
},
env: {
browser: true,
},
},
{
files: ['*.js'],
rules: {
'react/react-in-jsx-scope': 'off',
'jsdoc/no-undefined-types': 'off',
'@wordpress/i18n-translator-comments': 'off',
'@wordpress/valid-sprintf': 'off',
'jsdoc/check-types': 'off',
'jsdoc/check-tag-names': 'off',
'react/no-render-return-value': 'off',
'jsdoc/check-param-names': 'off',
'jsdoc/valid-types': 'off',
'no-unused-vars': 'off',
'jest/expect-expect': 'off',
'import/no-unresolved': 'off',
'import/no-extraneous-dependencies': 'off',
},
globals: {
eejsdata: true,
},
},
],
};