832655c759
- pre-commit: 新增 prettier hook,覆盖前端文件 - CI auto_fix: 增加 prettier 自动修复(增量/全量模式) - VSCode: 前端文件保存自动格式化 - 新增 apps/web/.prettierrc.json 配置 - 新增 apps/web/.prettierignore 忽略配置 - package.json 增加 format / format:check 脚本
13 lines
230 B
JSON
Executable File
13 lines
230 B
JSON
Executable File
{
|
|
"semi": false,
|
|
"singleQuote": false,
|
|
"trailingComma": "all",
|
|
"printWidth": 100,
|
|
"tabWidth": 2,
|
|
"useTabs": false,
|
|
"arrowParens": "always",
|
|
"endOfLine": "lf",
|
|
"bracketSpacing": true,
|
|
"bracketSameLine": false
|
|
}
|