PyCharm
 
Get PyCharm
You are viewing the documentation for an earlier version of PyCharm.

JSDoc comments

Last modified: 28 September 2022

Available only in PyCharm Professional: download to try or compare editions

Required plugin:

Javascript and TypeScript -  The plugin is available only in PyCharm Professional, where it is enabled by default.

PyCharm recognizes JSDoc comments and helps you create them by automatically inserting @param, @returns, @private, and other tags when you type the opening block comment /** and press Enter. JSDoc comments are used for documentation lookup with Ctrl+Q in JavaScript and TypeScript, see JavaScript documentation look-up and TypeScript documentation look-up, as well as for type annotations and method return type hints in chained methods.

PyCharm also recognizes TODO patterns, Closure Compiler annotations, and TypeScript syntax inside documentation comments and uses them in code completion, intention actions, and other types of coding assistance.

Find a detailed description of the JSDoc syntax with examples in Getting Started with JSDoc and JSDoc supported types.