Apply JSDoc alignment rule to scripts/ directory

I mistakenly applied this rule only to `*.ts` files, but we should apply
it to JavaScript files also.

Bug: none
Change-Id: I6c7af0e897e06a7a04ec3dea83fcbd9719744705
Reviewed-on: https://chromium-review.googlesource.com/c/devtools/devtools-frontend/+/4111459
Commit-Queue: Jack Franklin <jacktfranklin@chromium.org>
Reviewed-by: Andres Olivares <andoli@chromium.org>
Auto-Submit: Jack Franklin <jacktfranklin@chromium.org>
Commit-Queue: Andres Olivares <andoli@chromium.org>
diff --git a/scripts/reformat-clang-js-ts.js b/scripts/reformat-clang-js-ts.js
index 66d4503..f692019 100644
--- a/scripts/reformat-clang-js-ts.js
+++ b/scripts/reformat-clang-js-ts.js
@@ -6,9 +6,9 @@
  * Run this script to re-format all .js and .ts files found
  * node scripts/reformat-clang-js-ts.js --directory=front_end
  * The script starts in the given directory and recursively finds all `.js` and `.ts` files to reformat.
-  * Any `.clang-format` with `DisableFormat: true` is respected; those
-  * directories will not be used.
-**/
+ * Any `.clang-format` with `DisableFormat: true` is respected; those
+ * directories will not be used.
+ **/
 
 const fs = require('fs');
 const path = require('path');