tansci/antdv-next-admin/.oxlintrc.json
xuewuerduo f468d532b1 feat: 初始化tansci资产管理项目
包含以下模块:
- antdv-next-admin: Vue 3 + TypeScript + Ant Design Vue 管理后台
  - 设备/许可证/配件/耗材 CRUD 管理页面
  - 基础数据管理 (分类/位置/制造商/型号/供应商)
  - 业务管理 (故障报修/盘点/资产分配/资产申请/交易记录)
  - 下拉选项改造 (ID输入框 → 搜索下拉选择)
  - 资产状态字典化 (接入sys_dict系统)
  - 界面文案优化 (设备→资产, 在库/在用/维修中/已报废)
  - 修复 console 警告 (popupClassName, 重复组件注册)
- our-itam: Java Spring Boot + magic-api 后端服务
- fantastic-admin: 前端底层框架 (pnpm monorepo)
- ciyo-itasset: CIYO 资产模块
- magic-script-skill: Claude Code skill 定义
- .claude: 对话历史记录

Co-Authored-By: Claude Code <noreply@anthropic.com>
2026-05-17 21:41:22 +08:00

29 lines
611 B
JSON

{
"$schema": "./node_modules/oxlint/configuration_schema.json",
"plugins": ["vue", "typescript", "import"],
"categories": {
"correctness": "error",
"suspicious": "warn",
"perf": "warn"
},
"rules": {
"no-unused-vars": "warn",
"typescript/no-explicit-any": "warn",
"typescript/no-unnecessary-type-assertion": "warn",
"import/no-duplicates": "error"
},
"overrides": [
{
"files": ["**/*.vue"],
"rules": {
"vue/no-unused-vars": "warn"
}
},
{
"files": ["mock/**/*"],
"rules": {
"no-console": "off"
}
}
]
}