加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
prettier.config.js 639 Bytes
一键复制 编辑 原始数据 按行查看 历史
suwo.zhang 提交于 2024-10-06 10:50 . init project
/** 配置项文档:https://prettier.io/docs/en/configuration.html */
module.exports = {
/** 每一行的宽度 */
printWidth: 500,
/** tab 健的空格数 */
tabWidth: 2,
/** 在对象中的括号之间用空格来间隔 */
bracketSpacing: true,
/** 箭头函数的参数无论有几个,都要括号包裹 */
arrowParens: 'always',
/** 换行符的使用 */
endOfLine: 'auto',
/** 是否采用单引号 */
singleQuote: true,
/** 对象或者数组的最后一个元素后面不要加逗号 */
trailingComma: 'none',
/** 不加分号 */
semi: false,
/** 不使用 tab 格式化 */
useTabs: false,
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化