lida-app/.prettierrc.json
minglipro 921d454640
feat:初始提交
- 新建项目结构和基础配置
- 添加用户登录和车号查询功能
- 实现消息提示和加载指令
- 配置路由和全局状态管理
2025-08-20 09:08:46 +08:00

29 lines
599 B
JSON

{
"$schema": "https://json.schemastore.org/prettierrc",
"printWidth": 120,
"tabWidth": 2,
"useTabs": false,
"singleQuote": true,
"quoteProps": "as-needed",
"trailingComma": "all",
"bracketSpacing": true,
"jsxBracketSameLine": true,
"arrowParens": "always",
"rangeStart": 0,
"vueIndentScriptAndStyle": false,
"endOfLine": "auto",
"semi": true,
"usePrettierrc": true,
"requirePragma": false,
"bracketSameLine": true,
"htmlWhitespaceSensitivity": "ignore",
"overrides": [
{
"files": "*.json",
"options": {
"tabWidth": 4
}
}
]
}