防止更漂亮的标准删除Typescript接口中的分号

时间:2019-03-18 10:14:07

标签: typescript prettier prettier-standard

我有这个Typescript接口定义。

interface CurrencyAmountProps {
  value: number;
  currency: string;
}

我目前正在使用prettier-standard这个命令来格式化Typescript文件

"format": "prettier-standard --parser typescript --write --trailing-comma=all",

格式问题是prettier-standard删除了valuecurrency行之后的分号。

这是有效的打字稿,但是当我尝试使用react-intl-cra提取格式化的消息时,这会引起一些问题。

如何为不删除prettier-standard中的接口中的分号而设置例外?

1 个答案:

答案 0 :(得分:0)

也许可以尝试使用docs

中的“忽略接口”
"semicolon": [true, "always", "ignore-interfaces"]

此外,您可以删除那些分号。 :)