I have a function that should be called this a `this` referring any object (not `null` not `undefined`) I have this JSDoc: ```js /** * @this {object} */ function foo() {} ``` But `eslint-plugin-jsdoc` is failing with this error: > Tag @this must have either a type or namepath jsdoc/valid-types Is this a bug or should I use something else than `@this {object}`? 🤔