Skip to content

Commit

Permalink
ESLint: Change jsdoc/check-line-alignment from warn to error (#…
Browse files Browse the repository at this point in the history
…47878)

* ESLint: Change `jsdoc/check-line-alignment` from `warn` to `error`

* CHANGELOG
  • Loading branch information
tyxla authored Feb 8, 2023
1 parent 906e5a7 commit 234e16e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions packages/eslint-plugin/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

## Unreleased

### Breaking Changes

- Increase the severity of the rule `jsdoc/check-line-alignment` from `warn` to `error`. ([#47878](https://github.com/WordPress/gutenberg/pull/47878)).

## 13.10.0 (2023-02-01)

- The bundled `eslint-plugin-jsdoc` dependency has been updated from requiring `^37.0.3` to requiring `^39.6.9`
Expand Down
2 changes: 1 addition & 1 deletion packages/eslint-plugin/configs/jsdoc.js
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ module.exports = {
'jsdoc/check-access': 'error',
'jsdoc/check-alignment': 'error',
'jsdoc/check-line-alignment': [
'warn',
'error',
'always',
{
tags: [ 'param', 'arg', 'argument', 'property', 'prop' ],
Expand Down

0 comments on commit 234e16e

Please sign in to comment.