秋招教练
4c7f657b3d
实现7大功能模块: - 职业测评(霍兰德/MBTI对话式测评,输出MD分析报告) - AI简历打造(1v1对话生成/优化简历,支持万能简历+岗位定制) - 投递引导(推荐平台、岗位和投递策略) - JD定向陪跑(JD分析+定向简历改写+面试题预测) - 投递看板(Kanban风格投递进度追踪,localStorage持久化) - 笔试模拟(AI按岗位生成行测+专业+开放题,附答案解析) - Offer对比(多维度对比+AI分析建议) 技术栈:Next.js 16 + React 19 + TypeScript + TailwindCSS 4 部署配置:WeHub Cloud web_function + server.js Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
19 行
465 B
JavaScript
19 行
465 B
JavaScript
import { defineConfig, globalIgnores } from "eslint/config";
|
|
import nextVitals from "eslint-config-next/core-web-vitals";
|
|
import nextTs from "eslint-config-next/typescript";
|
|
|
|
const eslintConfig = defineConfig([
|
|
...nextVitals,
|
|
...nextTs,
|
|
// Override default ignores of eslint-config-next.
|
|
globalIgnores([
|
|
// Default ignores of eslint-config-next:
|
|
".next/**",
|
|
"out/**",
|
|
"build/**",
|
|
"next-env.d.ts",
|
|
]),
|
|
]);
|
|
|
|
export default eslintConfig;
|