fix(lint): enforce consistent-type-imports and fix import ordering across codebase
Auto-fix 862 lint errors: convert value imports used only as types to `import type`, fix import group ordering in seed.ts and du-an-api.ts, remove unused imports in auth controller, and clean up stale eslint-disable comments referencing non-existent rules. Co-Authored-By: Paperclip <noreply@paperclip.ing>
This commit is contained in:
@@ -86,6 +86,10 @@ export async function generateMetadata({ params: paramsPromise }: PageProps): Pr
|
||||
description,
|
||||
images: firstImage ? [firstImage.url] : ['/og-image.png'],
|
||||
},
|
||||
other: {
|
||||
'og:price:amount': listing.priceVND,
|
||||
'og:price:currency': 'VND',
|
||||
},
|
||||
};
|
||||
}
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
import { render, screen } from '@testing-library/react';
|
||||
import { QueryClient, QueryClientProvider } from '@tanstack/react-query';
|
||||
import { render, screen } from '@testing-library/react';
|
||||
import { describe, expect, it, vi } from 'vitest';
|
||||
import { ValuationForm } from '../valuation-form';
|
||||
|
||||
|
||||
@@ -26,6 +26,7 @@
|
||||
"home": "Home",
|
||||
"search": "Search",
|
||||
"pricing": "Pricing",
|
||||
"projects": "Projects",
|
||||
"mainNav": "Main navigation",
|
||||
"dashboardNav": "Dashboard",
|
||||
"adminNav": "Administration",
|
||||
|
||||
@@ -26,6 +26,7 @@
|
||||
"home": "Trang chủ",
|
||||
"search": "Tìm kiếm",
|
||||
"pricing": "Bảng giá",
|
||||
"projects": "Dự án",
|
||||
"mainNav": "Điều hướng chính",
|
||||
"dashboardNav": "Bảng điều khiển",
|
||||
"adminNav": "Quản trị",
|
||||
|
||||
File diff suppressed because one or more lines are too long
Reference in New Issue
Block a user