加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
.prettierrc.js 507 Bytes
一键复制 编辑 原始数据 按行查看 历史
yongkang 提交于 2024-06-13 17:58 . config
/** 配置项文档:https://prettier.io/docs/en/configuration.html */
export default {
trailingComma: "es5",
useTabs: false,
/** Tab 键的空格数 */
tabWidth: 2,
/** 每一行的宽度 */
printWidth: 100,
proseWrap: "preserve",
/** 箭头函数的参数无论有几个,都要括号包裹 */
arrowParens: "always",
/** 是否加分号 */
semi: true,
/** 是否采用单引号 */
singleQuote: false,
jsxSingleQuote: true,
/** 换行符的使用 */
endOfLine: "auto",
};
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化