I am using tslint for my typescript code.
I want to document a property of an interface.
tsLint gives an error JSDoc tag '@property' is redundant in TypeScript code. (no-redundant-jsdoc)tslint(1)
The following is my comment
/**
* @property value - number with a unit as string
*/
Disabling the tslint for next line also does not work.
