mirror of
https://github.com/fastapiadmin/FastapiAdmin.git
synced 2026-09-23 21:18:09 +00:00
- 添加项目配置文件(tsconfig, eslint, prettier等) - 实现基础路由和页面布局 - 添加全局状态管理和API请求封装 - 集成UI组件库和主题系统 - 添加文档网站和示例页面 - 配置CI/CD和工作流
11 lines
213 B
JavaScript
11 lines
213 B
JavaScript
module.exports = {
|
|
semi: true,
|
|
trailingComma: 'es5',
|
|
singleQuote: true,
|
|
printWidth: 100,
|
|
tabWidth: 2,
|
|
endOfLine: 'lf',
|
|
vueIndentScriptAndStyle: true,
|
|
bracketSpacing: true,
|
|
arrowParens: 'always'
|
|
} |