TSLint 中的函数参数格式

Function arguments format in 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
}

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