Skip to content

Commit

Permalink
- Docs: Update README
Browse files Browse the repository at this point in the history
  • Loading branch information
brettz9 committed May 19, 2021
1 parent 5b732df commit a880e33
Showing 1 changed file with 8 additions and 9 deletions.
17 changes: 8 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2320,15 +2320,6 @@ const fn = ( lorem, sit ) => {}
const fn = ( lorem, sit ) => {}
// "jsdoc/check-line-alignment": ["error"|"warn", "never",{"customSpacings":{"postName":3}}]
// Message: Expected JSDoc block lines to not be aligned.

/**
* @param {{
* ids: number[]
* }} params
*/
const myMethod = ({ids}) => {}
// "jsdoc/check-line-alignment": ["error"|"warn", "always"]
// Message: Expected JSDoc block lines to be aligned.
````

The following patterns are not considered problems:
Expand Down Expand Up @@ -2576,6 +2567,14 @@ const fn = ( lorem, sit ) => {}
*/
const fn = ( lorem, sit ) => {}
// "jsdoc/check-line-alignment": ["error"|"warn", "never",{"customSpacings":{"postDelimiter":2,"postTag":3,"postType":2}}]

/**
* @param {{
* ids: number[]
* }} params
*/
const fn = ({ids}) => {}
// "jsdoc/check-line-alignment": ["error"|"warn", "always"]
````


Expand Down

0 comments on commit a880e33

Please sign in to comment.