-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy path.eslintrc.js
87 lines (87 loc) · 1.82 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
79
80
81
82
83
84
85
86
87
module.exports = {
root: true,
env: {
browser: true,
es6: true,
'jest/globals': true,
},
extends: [
'plugin:@wordpress/eslint-plugin/recommended',
],
parser: '@babel/eslint-parser',
parserOptions: {
sourceType: 'module',
babelOptions: {
configFile: './.babelrc',
},
},
ignorePatterns: [ '**/build/*', '**/dist/*', '**/lib/*' ],
rules: {
'react/jsx-no-undef': 'off',
'prettier/prettier': 'off',
'jsdoc/require-param-type': 'off',
'jsdoc/require-returns-description': 'off',
'jsdoc/no-undefined-types': 'off',
'max-lines-per-function': [
'error',
{
max: 50,
skipBlankLines: true,
skipComments: true,
},
],
'max-depth': [
'error',
2,
],
'no-constructor-return': 'error',
'no-await-in-loop': 'error',
eqeqeq: [ 'error', 'always' ],
camelcase: [
'error',
{
properties: 'never',
ignoreDestructuring: true,
},
],
'no-var': 'error',
'import/no-unresolved': 'off',
'@stylistic/arrow-spacing': 'error',
'@stylistic/block-spacing': 'error',
'@stylistic/comma-spacing': [
'error',
{ before: false, after: true },
],
'@stylistic/array-bracket-spacing': [ 'error', 'always' ],
'@stylistic/computed-property-spacing': [ 'error', 'always' ],
'@wordpress/i18n-text-domain': [
'error',
{
allowedTextDomain: [ 'jet-form-builder' ],
},
],
},
plugins: [
'react',
'@stylistic',
'jest',
],
globals: {
window: 'readonly',
jQuery: 'readonly',
Vue: 'readonly',
Vuex: 'readonly',
wp: 'readonly',
ajaxurl: 'readonly',
jfbEventBus: 'writable',
JetFBComponents: 'writable',
JetFBActions: 'writable',
JetFBStore: 'writable',
JetFBHooks: 'writable',
JetFormEditorData: 'readonly',
JetFormBuilderSettings: 'readonly',
JetFormBuilderAbstract: 'writable',
JetFormBuilderFunctions: 'writable',
JetPlugins: 'writable',
},
};