加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
.prettierrc.js 681 Bytes
一键复制 编辑 原始数据 按行查看 历史
lhl 提交于 2021-06-27 15:13 . first commit
/*
* @Description: prettier代码格式统一
* @Version: 2.0
* @Autor: lhl
* @Date: 2021-04-04 19:02:03
* @LastEditors: lhl
* @LastEditTime: 2021-04-10 21:43:38
*/
module.exports = {
"eslintIntegration": true,
"printWidth": 100,
"tabWidth": 2,
"useTabs": false,
"semi": false,
"vueIndentScriptAndStyle": true,
"singleQuote": true,
"quoteProps": "as-needed",
"bracketSpacing": true,
"trailingComma": "none",
"endOfLine": "auto",
"jsxBracketSameLine": false,
"jsxSingleQuote": false,
"arrowParens": "always",
"insertPragma": false,
"requirePragma": false,
"proseWrap": "never",
"htmlWhitespaceSensitivity": "strict",
"endOfLine": "lf"
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化