Closed
Description
I would like to propose a rule that enforces consistent spacing between class functions.
The following patterns would be considered problems:
class Test1 {
constructor () {
// ...
}
otherFunc () {
// ...
}
}
class Test2 {
constructor () {
// ...
}
otherFunc () {
// ...
}
}
The following pattern would be considered valid:
class Test3 {
constructor () {
// ...
}
otherFunc () {
// ...
}
}
Metadata
Assignees
Type
Projects
Status
Done