https://github.com/kodama1/vek1/pull/124 esse pr esta com um...
👤 User
https://github.com/kodama1/vek1/pull/124 esse pr esta com um erro de lint Solution for failing job 88752172676:
The failure is in the Lint job from .github/workflows/ci.yml (Run ESLint step runs bun run lint) and is caused by import ordering in:
src/app/lp/autopecas/page.tsx
https://github.com/kodama1/vek1/blob/505b05522923bc3f198828bd14ba5ab10b40ca79/src/app/lp/autopecas/page.tsx
Why it failed
ESLint reports:
There should be at least one empty line between import groups
@/lib/faqimport should occur before import of@/components/lp/lp-autopecas-client`
Current imports:
TSX
import type { Metadata } from 'next';
import { connection } from 'next/server';
import { LpAutopecasClient } from '@/components/lp/lp-autopecas-client';
import { AUTOPECAS_FAQ, faqToJsonLd } from '@/lib/faq';
Fix
Reorder internal imports alphabetically (or by your configured groups), with @/lib/* before @/components/*, and keep blank lines between groups:
TSX
import type { Metadata } from 'next';
import { connection } from 'next/server';
import { AUTOPECAS_FAQ, faqToJsonLd } from '@/lib/faq';
import { LpAutopecasClient } from '@/components/lp/lp-autopecas-client';
This should resolve the lint errors and unblock CI. e esse foi o workarround que o copilot sugeriu veja se esta de acordo e monte um prompt para enviar ao agent
👤 User
hello my friend