Skip to content

jsdoc/require-property-type Correctness

What it does

Requires that each @property tag has a type value (within curly brackets).

Why is this bad?

The type of a property should be documented.

Examples

Examples of incorrect code for this rule:

javascript
/**
 * @typedef {SomeType} SomeTypedef
 * @property foo
 */

Examples of correct code for this rule:

javascript
/**
 * @typedef {SomeType} SomeTypedef
 * @property {number} foo
 */

How to use

To enable this rule using the config file or in the CLI, you can use:

json
{
  "plugins": ["jsdoc"],
  "rules": {
    "jsdoc/require-property-type": "error"
  }
}
bash
oxlint --deny jsdoc/require-property-type --jsdoc-plugin

References

Released under the MIT License.