Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
module.exports = {
overrides: [
{
files: [ '**/*.{js.jsx,ts,tsx}' ],
rules: {
'wpcalypso/no-unsafe-wp-apis': [
'warn',
{
'@wordpress/block-editor': [ '__unstableIframe', '__unstableEditorStyles' ],
'@wordpress/components': [
'__experimentalHStack',
'__experimentalVStack',
'__unstableComposite',
'__unstableCompositeItem',
'__unstableMotion',
'__unstableUseCompositeState',
],
},
],
},
},
],
};