I'm setting up some tslint rules, in order for my team and I to better adhere to our code contract. Is there any weay to use tslint, or vs code in general, to force the use of multiline contructors
eg
this
constructor(
private coreWebServices: CoreWebServices,
private deviceDiscoveryService: DeviceDiscoveryService,
private eventsService: EventsService,
private log: LogService,
private newsService: NewsService,
private route: ActivatedRoute,
private router: Router,
private runtimeService: RunTimeService
) { }
in stead of this
constructor(private coreWebServices: CoreWebServices, private deviceDiscoveryService: DeviceDiscoveryService, private eventsService: EventsService, private log: LogService, private newsService: NewsService, private route: ActivatedRoute, private router: Router, private runtimeService: RunTimeService)
{ }