@属性 对象,tslint 给出错误 - no-redundant-jsdoc
@property of an object, tslint gives error - no-redundant-jsdoc
我正在为我的打字稿代码使用 tslint。
我想记录一个接口的 属性 。
tsLint 给出错误 JSDoc tag '@property' is redundant in TypeScript code. (no-redundant-jsdoc)tslint(1)
以下是我的评论
/**
* @property value - number with a unit as string
*/
禁用下一行的 tslint 也不起作用。
如果这对你有用,你可以为整个文件禁用它吗?
这是对 tslint 中 no-redundant-jsdoc
问题的修复,对我有用(基本上我禁用了 lint 抛出那个 error/issue):
打开项目根目录中的tslint.json文件。
将行 "no-redundant-jsdoc": true
替换为 "no-redundant-jsdoc": false
返回并检查有问题的 errors/files。现在应该修复了。
我正在为我的打字稿代码使用 tslint。
我想记录一个接口的 属性 。
tsLint 给出错误 JSDoc tag '@property' is redundant in TypeScript code. (no-redundant-jsdoc)tslint(1)
以下是我的评论
/**
* @property value - number with a unit as string
*/
禁用下一行的 tslint 也不起作用。
如果这对你有用,你可以为整个文件禁用它吗?
这是对 tslint 中 no-redundant-jsdoc
问题的修复,对我有用(基本上我禁用了 lint 抛出那个 error/issue):
打开项目根目录中的tslint.json文件。
将行
"no-redundant-jsdoc": true
替换为"no-redundant-jsdoc": false
返回并检查有问题的 errors/files。现在应该修复了。