fix(lint): resolve all 49 lint warnings and errors across codebase

- Remove unused imports/variables in seed scripts and test files
- Replace console.log with console.warn in seed/utility scripts
- Replace `as any` with proper Prisma types (InputJsonValue, PaymentStatus, Plan, UserWhereInput)
- Fix import-x/no-named-as-default-member warnings in logger, mapbox, eslint config
- Prefix unused callback params with underscore in e2e tests

Co-Authored-By: Paperclip <noreply@paperclip.ing>
This commit is contained in:
Ho Ngoc Hai
2026-04-08 13:22:07 +07:00
parent 36c1e3b39a
commit cc5c81904b
18 changed files with 47 additions and 44 deletions

View File

@@ -207,12 +207,12 @@ function randomVariation(base: number, pct: number): number {
}
async function importMarketData() {
console.log('Importing market data for HCM, Hanoi, Da Nang...\n');
console.warn('Importing market data for HCM, Hanoi, Da Nang...\n');
let total = 0;
for (const [city, districts] of Object.entries(MARKET_DATA)) {
console.log(` ${city}:`);
console.warn(` ${city}:`);
let cityCount = 0;
for (const { district, avgPriceM2 } of districts) {
@@ -269,10 +269,10 @@ async function importMarketData() {
}
}
console.log(` ${cityCount} market index records`);
console.warn(` ${cityCount} market index records`);
}
console.log(`\nTotal: ${total} market index records imported.`);
console.warn(`\nTotal: ${total} market index records imported.`);
}
if (require.main === module) {

View File

@@ -250,13 +250,13 @@ const PROPERTY_TEMPLATES = [
];
async function seedDistrictProperties() {
console.log('Seeding district properties across HCM, Hanoi, Da Nang...\n');
console.warn('Seeding district properties across HCM, Hanoi, Da Nang...\n');
let created = 0;
let skipped = 0;
for (const { city, districts } of getAllDistricts()) {
console.log(` ${city}:`);
console.warn(` ${city}:`);
const coords = CITY_COORDINATES[city] ?? {};
for (const { district, wards } of districts) {
@@ -296,24 +296,24 @@ async function seedDistrictProperties() {
}
const cityDistricts = districts.length;
console.log(` ${cityDistricts} districts processed`);
console.warn(` ${cityDistricts} districts processed`);
}
console.log(`\n Total: ${created} properties created, ${skipped} skipped (already exist)`);
console.warn(`\n Total: ${created} properties created, ${skipped} skipped (already exist)`);
}
async function main() {
console.log('=== Seed Districts — Vietnam Real Estate Dev Data ===\n');
console.warn('=== Seed Districts — Vietnam Real Estate Dev Data ===\n');
// Log summary
for (const { city, districts } of getAllDistricts()) {
const totalWards = districts.reduce((sum, d) => sum + d.wards.length, 0);
console.log(` ${city}: ${districts.length} districts, ${totalWards} wards`);
console.warn(` ${city}: ${districts.length} districts, ${totalWards} wards`);
}
console.log('');
console.warn('');
await seedDistrictProperties();
console.log('\nDone.');
console.warn('\nDone.');
}
// Run standalone or import as module

View File

@@ -98,7 +98,7 @@ export const PLANS = [
];
async function seedPlans() {
console.log('Seeding subscription plans...\n');
console.warn('Seeding subscription plans...\n');
for (const plan of PLANS) {
const _result = await prisma.plan.upsert({
@@ -115,10 +115,10 @@ async function seedPlans() {
});
const monthly = Number(plan.priceMonthlyVND).toLocaleString('vi-VN');
console.log(` ${plan.tier.padEnd(12)} ${plan.name.padEnd(14)} ${monthly} VND/tháng`);
console.warn(` ${plan.tier.padEnd(12)} ${plan.name.padEnd(14)} ${monthly} VND/tháng`);
}
console.log(`\n${PLANS.length} plans seeded.`);
console.warn(`\n${PLANS.length} plans seeded.`);
}
if (require.main === module) {