Is there equivalent of the following rule
"@typescript-eslint/typedef": [
"error",
{
"variableDeclaration": true
}
],
For class members? It produces the following error on missing explicit type annotation:
const test = new AppComponent();
Expected test to have a type
annotation. (eslint@typescript-eslint/typedef)
We have requirements in our development where it would be really helpful to force class members to have a type, as these are getting missed often in the course of our typescript conversoin.