代码格式化规范
# 代码格式化规范
## 统一使用prettier进行代码格式化
```js
{
"printWidth": 150, //每行最多多少个字符换行
"tabWidth": 4, // tab缩进大小
"useTabs": false, // 缩进不使用tab,使用空格
"semi": false, // 句尾添加分号
"singleQuote": true, // 使用单引号代替双引号
"proseWrap": "preserve", // 默认值。因为使用了一些折行敏感型的渲染器(如GitHub comment)而按照markdown文本样式进行折行
"arrowParens": "avoid", // (x) => {} 箭头函数参数只有一个时是否要有小括号。avoid:省略括号
"bracketSpacing": true, // 在对象,数组括号与文字之间加空格 "{ foo: bar }"
"endOfLine": "lf", // 结尾是 \n \r \n\r auto
"htmlWhitespaceSensitivity": "ignore",
"ignorePath": ".prettierignore", // 不使用prettier格式化的文件填写在项目的.prettierignore文件中
"jsxBracketSameLine": false, // 在jsx中把'>' 是否单独放一行
"jsxSingleQuote": false, // 在jsx中使用单引号代替双引号
"requireConfig": false, // Require a 'prettierconfig' to format prettier
"trailingComma": "none", // 在对象或数组最后一个元素后面是否加逗号(在ES5中加尾逗号)
"vueIndentScriptAndStyle": false
}
```