diff options
author | Darius Jahandarie <djahandarie@gmail.com> | 2023-10-01 16:45:46 +0900 |
---|---|---|
committer | Darius Jahandarie <djahandarie@gmail.com> | 2023-10-01 16:45:46 +0900 |
commit | 6a47eb02a76857a1ce2412babcc7969fd3b77bc4 (patch) | |
tree | 8ab1a3fa764f05a1c45b6864d3bd19e2695dc354 /.eslintrc.json | |
parent | 54530376bfb2bce40f925fe07dd7efdcb1267578 (diff) |
Satisfy jsdoc/check-line-alignment lint
Diffstat (limited to '.eslintrc.json')
-rw-r--r-- | .eslintrc.json | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/.eslintrc.json b/.eslintrc.json index 99511fcd..06a2be34 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -233,7 +233,13 @@ "no-unsanitized/property": "error", "jsdoc/check-access": "error", "jsdoc/check-alignment": "error", - "jsdoc/check-line-alignment": "error", + "jsdoc/check-line-alignment": [ + "error", + "never", + { + "wrapIndent": " " + } + ], "jsdoc/check-param-names": "error", "jsdoc/check-property-names": "error", "jsdoc/check-tag-names": "error", |