embedchain / embedchain-js /lint-staged.config.js
rajesh1501's picture
Upload folder using huggingface_hub
a85c9b8 verified
raw
history blame contribute delete
145 Bytes
module.exports = {
'*.{js,ts}': ['eslint --fix', 'eslint'],
'**/*.ts?(x)': () => 'npm run check-types',
'*.json': ['prettier --write'],
};