/**
* This is my class
*/
class Something {
/**
* This is my first method
*/
first() {
// (...)
}
/**
* This is my second method
*/
second() {
// (...)
}
// (...)
}
result:
/**
* This is my class
*/
class Something {
/**
* This is my first method
*/
first() {
// (...)
}
/**
* This is my second method
*/
second() {
// (...)
}
// (...)
}
So that:
.esformatter
source:
result: