UNPKG

canonical

Version:

Canonical code style linter and formatter for JavaScript, SCSS and CSS.

26 lines (18 loc) 276 B
### `require-param` Ensures all parameters are documented. The following patterns are considered problems: ```js /** * */ function quux (foo) { } ``` The following patterns are not considered problems: ```js /** * @param {string} foo */ function quux (foo) { } ```