- 添加题库管理页面及相关组件 - 实现排行榜管理功能,包括列表和详情页 - 新增实时结果展示页面 - 添加模板制作和管理功能 - 完善路由配置和国际化支持 - 新增阿里云OSS文件上传服务 - 添加多种工具函数和类型定义 - 优化表格和表单组件 - 调整布局和样式细节
24 lines
623 B
JavaScript
24 lines
623 B
JavaScript
// @ts-check
|
|
import { readStarConfig } from '@read-star/eslint-config'
|
|
|
|
export default readStarConfig(
|
|
{
|
|
vue: true,
|
|
unocss: true,
|
|
ignores: [
|
|
'**/dist/**',
|
|
'**/node_modules/**',
|
|
'**/public/**',
|
|
'pnpm-lock.yaml',
|
|
],
|
|
},
|
|
{
|
|
rules: {
|
|
'vue/multi-word-component-names': ['warn', { ignores: ['index', 'App', 'Register', '[id]', '[url]'] }],
|
|
'vue/component-name-in-template-casing': ['warn', 'PascalCase', { registeredComponentsOnly: false, ignores: ['/^icon-/'] }],
|
|
'unocss/order-attributify': 'off',
|
|
'regexp/no-unused-capturing-group': 'off',
|
|
},
|
|
},
|
|
)
|