@对象的属性,tslint给出错误-no-redundant-jsdoc

时间:2019-10-09 11:41:22

标签: javascript angular typescript jsdoc tslint

我正在使用tslint作为我的打字稿代码。 我要记录接口的属性。 tsLint给出错误JSDoc tag '@property' is redundant in TypeScript code. (no-redundant-jsdoc)tslint(1)

以下是我的评论

/**
 * @property value - number with a unit as string
 */

为下一行禁用tslint也不起作用。

jsDoc @property and tslint disable does not work

2 个答案:

答案 0 :(得分:0)

如果可以的话,您可以为整个文件禁用此功能?

答案 1 :(得分:0)

这是 tslint 中针对no-redundant-jsdoc问题的修复,对我有用(基本上我禁止皮棉抛出该错误/问题):

  1. 在项目根目录中打开 tslint.json 文件。

  2. 将行"no-redundant-jsdoc": true替换为"no-redundant-jsdoc": false

返回并检查有问题的错误/文件。现在应该解决。