@use JSDoc

Overview

The @ignore tag indicates that a symbol in your code should never appear in the documentation. This tag takes precedence over all others.

For most JSDoc templates, including the default template, the @ignore tag has the following effects:

Examples

In the following example, Jacket and Jacket#color will not appear in the documentation.

Class with `@ignore` tag
/**
 * @class
 * @ignore
 */
function Jacket() {
    /** The jacket's color. */
    this.color = null;
}

In the following example, the Clothes namespace contains a Jacket class. The @ignore tag must be added to both Clothes and Clothes.Jacket. Clothes, Clothes.Jacket, and Clothes.Jacket#color will not appear in the documentation.

Namespace with child class
/**
 * @namespace
 * @ignore
 */
var Clothes = {
    /**
     * @class
     * @ignore
     */
    Jacket: function() {
        /** The jacket's color. */
        this.color = null;
    }
};