21 lines
715 B
JavaScript
21 lines
715 B
JavaScript
module.exports = {
|
|
extends: [ 'plugin:@woocommerce/eslint-plugin/recommended' ],
|
|
rules: {
|
|
// temporary conversion to warnings until the below are all handled.
|
|
'@wordpress/i18n-translator-comments': 'warn',
|
|
'@wordpress/valid-sprintf': 'warn',
|
|
'react-hooks/rules-of-hooks': 'warn',
|
|
'jsdoc/check-param-names': 'warn',
|
|
'jsdoc/require-param': 'warn',
|
|
'jsdoc/require-property': 'warn',
|
|
'jsdoc/no-undefined-types': 'warn',
|
|
'jsdoc/require-param-type': 'warn',
|
|
'jsdoc/require-property-description': 'warn',
|
|
'jsdoc/require-property-name': 'warn',
|
|
'jsdoc/check-property-names': 'warn',
|
|
'jsdoc/require-property-type': 'warn',
|
|
'jsdoc/valid-types': 'warn',
|
|
'jsdoc/check-tag-names': 'warn',
|
|
},
|
|
};
|