TSLint中的函数参数格式

时间:2017-08-09 09:41:29

标签: typescript code-formatting tslint

我们说我们有一个构造函数:

constructor(private el: ElementRef) {
    // Some code here
}

在某些时候,开发人员决定以这种方式添加一个新参数:

constructor(private el: ElementRef,
            private config: Config) {
    // Some code here
}

有没有办法阻止这种情况并迫使开发人员使用这种格式:

constructor(private el: ElementRef, private config: Config) {
    // Some code here
}

这种格式:

constructor(
    private el: ElementRef,
    private config: Config,
) {
    // Some code here
}

1 个答案:

答案 0 :(得分:0)

据我所知,目前没有这样的规则。如果您真的想要强制执行此规则,则可能需要编写自己的custom one