-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy path.eslintrc.js
58 lines (58 loc) · 1.22 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
module.exports = {
extends: [ 'plugin:@woocommerce/eslint-plugin/recommended' ],
globals: {
_: false,
Backbone: false,
jQuery: false,
wp: false,
wc: false,
wcSquareSettings: false,
},
settings: {
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/element',
'@woocommerce/block-templates',
],
'import/resolver': {
node: {
extensions: [ '.js', '.jsx', '.ts', '.tsx' ],
},
},
},
rules: {
'no-console': 'off',
'react/react-in-jsx-scope': 'off',
'react-hooks/exhaustive-deps': 'off',
'react-hooks/rules-of-hooks': 'off',
'@woocommerce/dependency-group': 'off',
camelcase: 'off',
'@wordpress/i18n-text-domain': [
'error',
{
allowedTextDomain: 'woocommerce-square',
},
],
},
overrides: [
{
files: [ '**/assets/blocks/**/**.js' ],
globals: {
jQuery: true,
browser: true,
wc: true,
},
rules: {
camelcase: 'off',
'no-alert': 'off',
'no-shadow': 'off',
},
},
],
};