-
Notifications
You must be signed in to change notification settings - Fork 207
/
.eslintrc.js
84 lines (84 loc) · 1.92 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
module.exports = {
root: true,
parser: '@babel/eslint-parser',
extends: [
'plugin:@woocommerce/eslint-plugin/recommended',
'plugin:@typescript-eslint/recommended',
],
globals: {
_: false,
Backbone: false,
jQuery: false,
wp: false,
__PAYMENT_METHOD_FEES_ENABLED: false,
},
env: {
browser: true,
'jest/globals': true,
node: true,
},
rules: {
'react-hooks/exhaustive-deps': 'error',
'react-hooks/rules-of-hooks': 'error',
'react/jsx-curly-brace-presence': [
'error',
{ props: 'never', children: 'never' },
],
'react/self-closing-comp': [ 'error', { component: true, html: true } ],
'@woocommerce/dependency-group': 'off',
'import/no-useless-path-segments': [
'error',
{
noUselessIndex: true,
},
],
'import/order': [
'error',
{
'newlines-between': 'never',
pathGroups: [
{
pattern: 'wcstripe/**',
group: 'internal',
},
],
},
],
// The following are disabled temporarily, just to avoid issues with upcoming updates.
// TODO: Re-enable these rules once more pressing issues are live.
'no-unused-vars': [
'error',
{
varsIgnorePattern: 'React',
},
],
'@typescript-eslint/no-unused-vars': [
'error',
{
varsIgnorePattern: 'React',
},
],
'react/react-in-jsx-scope': 'off',
'testing-library/no-unnecessary-act': 'off',
'@typescript-eslint/no-empty-function': 'off',
'@typescript-eslint/no-var-requires': 'off',
},
settings: {
react: {
version: 'detect',
},
'import/resolver': { webpack: {} },
jsdoc: { mode: 'typescript' },
// List of modules that are externals in our webpack config.
// This helps the `import/no-extraneous-dependencies` and
//`import/no-unresolved` rules account for them.
'import/core-modules': [
'@woocommerce/blocks-registry',
'@woocommerce/settings',
'@wordpress/i18n',
'@wordpress/is-shallow-equal',
'@wordpress/element',
'@wordpress/data',
],
},
};