17 lines
315 B
JavaScript
17 lines
315 B
JavaScript
|
module.exports = {
|
||
|
extends: [ 'plugin:@wordpress/eslint-plugin/recommended', 'prettier' ],
|
||
|
env: {
|
||
|
'jest/globals': true,
|
||
|
},
|
||
|
globals: {
|
||
|
wcSettings: true,
|
||
|
},
|
||
|
plugins: [ 'jest' ],
|
||
|
rules: {
|
||
|
'@wordpress/dependency-group': 'off',
|
||
|
'valid-jsdoc': 'off',
|
||
|
radix: 'error',
|
||
|
yoda: [ 'error', 'never' ],
|
||
|
},
|
||
|
};
|