Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
const { nodeConfig } = require( '@automattic/calypso-eslint-overrides' );
module.exports = {
env: {
browser: true,
},
overrides: [
{
files: [ './bin/**/*', './webpack.config.js' ],
...nodeConfig,
},
],
rules: {
'no-restricted-imports': [
0,
{
paths: [
{
name: 'redux',
importNames: [ 'combineReducers' ],
},
],
},
],
},
};