forked from woocommerce/google-listings-and-ads
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.js
58 lines (56 loc) · 1.19 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
const webpackConfig = require( './webpack.config' );
const webpackResolver = {
config: {
resolve: {
...webpackConfig.resolve,
/**
* Make eslint correctly resolve files that omit the .js extensions.
* The default value `'...'` doesn't work before the current eslint support for webpack v5.
* Ref: https://webpack.js.org/configuration/resolve/#resolveextensions
*/
extensions: [ '.js' ],
},
},
};
module.exports = {
extends: [
'plugin:@woocommerce/eslint-plugin/recommended',
'plugin:import/recommended',
],
settings: {
jsdoc: {
mode: 'typescript',
},
'import/core-modules': [
'webpack',
'stylelint',
'@woocommerce/product-editor',
'@woocommerce/block-templates',
'@wordpress/stylelint-config',
'@pmmmwh/react-refresh-webpack-plugin',
'react-transition-group',
'jquery',
],
'import/resolver': { webpack: webpackResolver },
},
globals: {
getComputedStyle: 'readonly',
},
rules: {
'@wordpress/no-unsafe-wp-apis': 1,
'react-hooks/exhaustive-deps': [
'warn',
{
additionalHooks: 'useSelect',
},
],
},
overrides: [
{
files: [ 'tests/e2e/**/*.js' ],
rules: {
'jest/no-done-callback': [ 'off' ],
},
},
],
};