量化交易多智能体系统,包含: - 分析师、投资组合经理、风险经理等智能体 - 股票分析、投资组合管理、风险控制工具 - React 前端界面 - FastAPI 后端服务 Co-Authored-By: Claude <noreply@anthropic.com>
24 lines
531 B
Plaintext
24 lines
531 B
Plaintext
{
|
|
"env": {
|
|
"browser": true,
|
|
"es2021": true
|
|
},
|
|
"parserOptions": {
|
|
"ecmaVersion": 2021,
|
|
"sourceType": "module",
|
|
"ecmaFeatures": {
|
|
"jsx": true
|
|
}
|
|
},
|
|
"rules": {
|
|
"semi": ["error", "always"],
|
|
"quotes": ["error", "double"],
|
|
"indent": ["error", 2],
|
|
"linebreak-style": ["error", "unix"],
|
|
"brace-style": ["error", "1tbs"],
|
|
"curly": ["error", "all"],
|
|
"no-eval": ["error"],
|
|
"prefer-const": ["error"],
|
|
"arrow-spacing": ["error", { "before": true, "after": true }]
|
|
}
|
|
} |