I am using Angular 10. We have lot of developers using : any
date type when they shouldn't be. Is there a way to flag a warning in ESLint/TSLint, if a person utilizes this datatype ?
How can this be done in ESLint settings?
I am using Angular 10. We have lot of developers using : any
date type when they shouldn't be. Is there a way to flag a warning in ESLint/TSLint, if a person utilizes this datatype ?
How can this be done in ESLint settings?
TS Lint has the no-any
rule that you can use.
"rules": { "no-any": true }