Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
raw
history blame
392 Bytes
// @ts-check
import vitest from '@vitest/eslint-plugin'
import rootConfig from './root.eslint.config.js'
export default [
...rootConfig,
{
plugins: { vitest },
rules: {
...vitest.configs.recommended.rules,
'vitest/expect-expect': [
'warn',
{
assertFunctionNames: ['expect', 'expectArrayEqualIgnoreOrder'],
},
],
},
},
]