作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想知道是否有一条规则可以在 typescript 中使用 prettier(项目根目录中的 .prettierrc)在函数/语句和注释之间添加一个新行。
当前行为:
} else if (request.type === 'membership-fee') {
/**
* If type is membership fee
*/
this.form.get('total')?.setValue(this.gym?.membership_fee?.total);
} else {
/**
* Operation type not recognized
*/
this.toast.error('Tipo di operazione non riconosciuto');
($('#editSaleModal') as any).modal('hide');
}
期望的行为:
} else if (request.type === 'membership-fee') {
/**
* If type is membership fee
*/
this.form.get('total')?.setValue(this.gym?.membership_fee?.total);
} else {
/**
* Operation type not recognized
*/
this.toast.error('Tipo di operazione non riconosciuto');
($('#editSaleModal') as any).modal('hide');
}
我当前的 .prettierc:
{
"useTabs": true,
"tabWidth": 4,
"printWidth": 120
}
最佳答案
不,prettier 没有这个规则。
Prettier 有一个稀疏的 list of options by design ,这不是其中之一。
关于angular - Prettier - 功能和评论之间的新线,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/69705929/
嘿。本周的一个教程,其中一个问题要求通过使用其他函数 formatLine 和 formatList 创建一个函数 formatLines,以格式化行列表。 我的代码是这样的; type Line =
我是一名优秀的程序员,十分优秀!