diff --git a/README.md b/README.md index ce83e314e..6706ca738 100644 --- a/README.md +++ b/README.md @@ -1957,6 +1957,16 @@ const fn = ( lorem, sit ) => {} // "jsdoc/check-line-alignment": ["error"|"warn", "always"] // Message: Expected JSDoc block lines to be aligned. +/** + * With tabs. + * + * @param {string} lorem Description. + * @param {int} sit Description multi words. + */ + const fn = ( lorem, sit ) => {} +// "jsdoc/check-line-alignment": ["error"|"warn", "always"] +// Message: Expected JSDoc block lines to be aligned. + /** * Function description. * @@ -2249,6 +2259,15 @@ The following patterns are not considered problems: const fn = ( lorem, sit ) => {} // "jsdoc/check-line-alignment": ["error"|"warn", "always"] +/** + * With tabs. + * + * @param {string} lorem Description. + * @param {int} sit Description multi words. + */ + const fn = ( lorem, sit ) => {} +// "jsdoc/check-line-alignment": ["error"|"warn", "always"] + /** * Function description. *