chore(web): new lint setup (#30020)

Co-authored-by: yyh <yuanyouhuilyz@gmail.com>
This commit is contained in:
Stephen Zhou
2025-12-23 16:58:55 +08:00
committed by GitHub
parent 9701a2994b
commit f2842da397
3356 changed files with 85046 additions and 81278 deletions

View File

@ -19,15 +19,20 @@ const Crawling: FC<Props> = ({
return (
<div className={className}>
<div className='flex h-[34px] items-center border-y-[0.5px] border-divider-regular px-4
text-xs text-text-tertiary shadow-xs shadow-shadow-shadow-3'>
{t('datasetCreation.stepOne.website.totalPageScraped')} {crawledNum}/{totalNum}
<div className="flex h-[34px] items-center border-y-[0.5px] border-divider-regular px-4
text-xs text-text-tertiary shadow-xs shadow-shadow-shadow-3"
>
{t('datasetCreation.stepOne.website.totalPageScraped')}
{' '}
{crawledNum}
/
{totalNum}
</div>
<div className='p-2'>
<div className="p-2">
{['', '', '', ''].map((item, index) => (
<div className='py-[5px]' key={index}>
<RowStruct className='text-text-quaternary' />
<div className="py-[5px]" key={index}>
<RowStruct className="text-text-quaternary" />
</div>
))}
</div>