我正在使用tslint作为我的打字稿代码。
我要记录接口的属性。
tsLint给出错误JSDoc tag '@property' is redundant in TypeScript code. (no-redundant-jsdoc)tslint(1)
以下是我的评论
/**
* @property value - number with a unit as string
*/
为下一行禁用tslint也不起作用。
答案 0 :(得分:0)
如果可以的话,您可以为整个文件禁用此功能?
答案 1 :(得分:0)
这是 tslint 中针对no-redundant-jsdoc
问题的修复,对我有用(基本上我禁止皮棉抛出该错误/问题):
在项目根目录中打开 tslint.json 文件。
将行"no-redundant-jsdoc": true
替换为"no-redundant-jsdoc": false
返回并检查有问题的错误/文件。现在应该解决。