1 Star 0 Fork 0

谭竿霄/tgx-blog

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
.prettierrc.js 1.31 KB
一键复制 编辑 原始数据 按行查看 历史
谭竿霄 提交于 2023-04-20 16:39 . update: 更新目录结构
// 这个文件是要配合 vscode 的插件 prettier 使用的,要确保编辑器安装了 prettier插件
module.exports = {
/**
* 字符串使用单引号
*/
singleQuote: true,
/**
* 对象最后一个元素自动添加 拖尾逗号
* none: 不添加
*/
trailingComma: 'none',
/**
* 每行末尾自动添加分号
*/
semi: false,
/**
* tab缩进大小,默认为2
*/
tabWidth: 2,
/**
* 使用tab缩进,默认false
*/
useTabs: false,
/**
* 对象中打印空格 默认true
* true: { foo: bar }
* false: {foo: bar}
*/
bracketSpacing: true,
/**
* 箭头函数参数括号 默认avoid 可选 avoid| always
* avoid 能省略括号的时候就省略 例如x => x
* always 总是有括号
*/
arrowParens: 'avoid',
/**
* 换行长度,默认80
*/
printWidth: 200,
/**
* 将多行JSX元素的 > 放在最后一行的末尾,而不是单独放在下一行
* 例子:
* 设置为true时:
* <button
className="prettier-class"
id="prettier-id"
onClick={this.handleClick}>
Click Here
</button>
*
* 设置为false时
* <button
className="prettier-class"
id="prettier-id"
onClick={this.handleClick}
>
Click Here
</button>
*/
jsxBracketSameLine: true
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/tgx-1587900660/tgx-blog.git
git@gitee.com:tgx-1587900660/tgx-blog.git
tgx-1587900660
tgx-blog
tgx-blog
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385