# IntelliFlow **Repository Path**: xiaobai114/intelli-flow ## Basic Information - **Project Name**: IntelliFlow - **Description**: 智流 (IntelliFlow) 是一个强大的AI智能体项目,旨在通过直观的可视化界面和高效的数据流处理,帮助用户轻松构建和管理复杂的AI工作流。该项目结合了先进的人工智能技术和灵活的节点系统,使用户能够快速创建、配置和部署智能解决方案。 - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 4 - **Forks**: 2 - **Created**: 2025-03-17 - **Last Updated**: 2025-06-15 ## Categories & Tags **Categories**: ai **Tags**: None ## README # React + TypeScript + Vite This template provides a minimal setup to get React working in Vite with HMR and some ESLint rules. ## ESLint 配置 项目使用了增强的 ESLint 配置,包括以下特性: - TypeScript 类型检查 - React 规则检查 - 导入顺序检查 - 可访问性检查 可用的命令: ```bash # 运行 ESLint 检查 npm run lint # 自动修复 ESLint 问题 npm run lint:fix # 运行类型检查 npm run typecheck ``` ## 推荐的 VSCode 插件 - ESLint: 实时代码检查 - Prettier: 代码格式化 - Error Lens: 更好地显示错误和警告 ## 当前项目依赖 Currently, two official plugins are available: - [@vitejs/plugin-react](https://github.com/vitejs/vite-plugin-react/blob/main/packages/plugin-react/README.md) uses [Babel](https://babeljs.io/) for Fast Refresh - [@vitejs/plugin-react-swc](https://github.com/vitejs/vite-plugin-react-swc) uses [SWC](https://swc.rs/) for Fast Refresh ## Expanding the ESLint configuration If you are developing a production application, we recommend updating the configuration to enable type-aware lint rules: ```js export default tseslint.config({ extends: [ // Remove ...tseslint.configs.recommended and replace with this ...tseslint.configs.recommendedTypeChecked, // Alternatively, use this for stricter rules ...tseslint.configs.strictTypeChecked, // Optionally, add this for stylistic rules ...tseslint.configs.stylisticTypeChecked, ], languageOptions: { // other options... parserOptions: { project: ['./tsconfig.node.json', './tsconfig.app.json'], tsconfigRootDir: import.meta.dirname, }, }, }) ``` You can also install [eslint-plugin-react-x](https://github.com/Rel1cx/eslint-react/tree/main/packages/plugins/eslint-plugin-react-x) and [eslint-plugin-react-dom](https://github.com/Rel1cx/eslint-react/tree/main/packages/plugins/eslint-plugin-react-dom) for React-specific lint rules: ```js // eslint.config.js import reactX from 'eslint-plugin-react-x' import reactDom from 'eslint-plugin-react-dom' export default tseslint.config({ plugins: { // Add the react-x and react-dom plugins 'react-x': reactX, 'react-dom': reactDom, }, rules: { // other rules... // Enable its recommended typescript rules ...reactX.configs['recommended-typescript'].rules, ...reactDom.configs.recommended.rules, }, }) ```