- 统一使用单引号替代双引号 - 移除不必要的分号 - 更新prettier配置使用更宽松的格式 - 添加eslint配置文件和相关依赖 - 更新package.json中的脚本和依赖版本
9 lines
200 B
JSON
9 lines
200 B
JSON
{
|
|
"$schema": "https://json.schemastore.org/prettierrc",
|
|
"semi": false,
|
|
"singleQuote": true,
|
|
"printWidth": 160,
|
|
"objectWrap": "preserve",
|
|
"bracketSameLine": true,
|
|
"trailingComma": "all"
|
|
} |