scratch-gui / scripts /.eslintrc.js
soiz1's picture
Upload folder using huggingface_hub
8fd7a1d verified
raw
history blame contribute delete
225 Bytes
const path = require('path');
module.exports = {
extends: [path.resolve(__dirname, '..', '.eslintrc.js')],
rules: {
// NPM scripts are allowed to use console.log & friends
'no-console': 'off'
}
};