For clarity, there should be a new line as the immediate line after any class definition.
The following pattern is considered a warning:
export class SomeClass {
constructor() {
super()
}
}
The following patterns are not considered warnings:
export class SomeClass {
/**
* This is the constructor for `SomeClass`
*/
constructor() {
super()
}
}
export class SomeClass {
constructor() {
super()
}
}