canonical
Version:
Canonical code style linter and formatter for JavaScript, SCSS and CSS.
26 lines (18 loc) • 298 B
Markdown
### `check-redundant-params`
Reports redundant params in JSDoc.
The following patterns are considered problems:
```js
/**
* @param {string} foo
*/
function quux () {
}
```
The following patterns are not considered problems:
```js
/**
* @param {string} foo
*/
function quux (foo) {
}
```