添加项目基础架构,包括字体管理、文档系统、API路由和UI组件。实现字体预览、收藏、搜索和文档浏览功能。 - 初始化Next.js项目结构和配置 - 添加字体管理API路由和数据库模型 - 实现字体预览和收藏功能 - 添加文档系统支持MDX内容 - 创建核心UI组件库 - 配置Redux状态管理和持久化 - 添加Storybook组件文档 - 实现响应式布局和主题系统 - 添加测试工具和CI配置 - 完善开发环境和构建配置
18 lines
427 B
JavaScript
18 lines
427 B
JavaScript
|
|
module.exports = {
|
|
extends: ['mantine', 'plugin:@next/next/recommended'],
|
|
parserOptions: {
|
|
project: './tsconfig.json',
|
|
},
|
|
rules: {
|
|
'react/react-in-jsx-scope': 'off',
|
|
'import/extensions': 'off',
|
|
'jsx-a11y/no-static-element-interactions': 'off',
|
|
"no-plusplus": 0,
|
|
"indent": [1, 2],
|
|
"no-else-return": 1,
|
|
"semi": [1, "always"],
|
|
"space-unary-ops": 2,
|
|
"consistent-return": 2,
|
|
},
|
|
};
|