加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
.prettierrc.js 609 Bytes
一键复制 编辑 原始数据 按行查看 历史
SevenDreamYang 提交于 2021-04-06 13:22 . feat:0.2.0版本更新
module.exports = {
// 让prettier使用eslint的代码格式进行校验
eslintIntegration: true,
// 超过最大值换行
printWidth: 120,
// 行末加分号
semi: true,
// tab键宽度,默认为2
tabWidth: 4,
// 结尾是 \n \r \n\r auto
endOfLine: 'auto',
// 用单引号代替双引号
singleQuote: true,
// 箭头函数参数括号 默认avoid 可选 avoid | always
// avoid 能省略括号的时候就省略 例如x => x
// always 总是有括号
arrowParens: 'avoid',
// 对象&数组是否追加空格
bracketSpacing: true,
};
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化