-
Notifications
You must be signed in to change notification settings - Fork 23
/
.eslintrc.js
63 lines (63 loc) · 1.38 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
module.exports = {
parser: '@babel/eslint-parser',
extends: [ 'plugin:@woocommerce/eslint-plugin/recommended' ],
globals: {
_: false,
Backbone: false,
jQuery: false,
wp: false,
__PAYMENT_METHOD_FEES_ENABLED: false,
},
env: {
browser: true,
'jest/globals': true,
node: true,
},
rules: {
'require-await': 'error',
'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',
},
],
},
],
},
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',
],
},
};