加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
.prettierrc.js 636 Bytes
一键复制 编辑 原始数据 按行查看 历史
/** @type {import("prettier").Config} */
export default {
// 使用 2 个空格缩进
tabWidth: 2,
// 行尾需要有分号
semi: true,
// 一行最多 80 个字符
printWidth: 80,
// 使用单引号
singleQuote: true,
// 对象的 key 是否有引号格式保持一致
quoteProps: 'consistent',
// html 空格敏感规则
htmlWhitespaceSensitivity: 'ignore',
// 不缩进 vue 文件中的 script 和 style
vueIndentScriptAndStyle: false,
// 多行时不强制尾随逗号
trailingComma: 'none',
// 箭头函数参数括号
arrowParens: 'avoid',
// jsx 中使用单引号
jsxSingleQuote: true
};
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化