Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
module.exports = {
rules: {
'no-restricted-imports': [
'error',
{
patterns: [
{
group: [ 'client/**/*', 'calypso/**/*' ],
message: 'Calypso imports are not allowed in this package',
},
],
},
],
},
};