chore(misc): Spelling (#25456)

Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
This commit is contained in:
Josh Soref
2023-09-29 12:34:04 -04:00
committed by GitHub
parent 041197b6df
commit 3e0c70d018
14 changed files with 73 additions and 73 deletions

View File

@@ -46,7 +46,7 @@ while (directories.length) {
// Check for existence of js, jsx, ts, and tsx files. Show a filled box if only ts and tsx,
// show an empty box if any js or jsx, and don't print the line if neither exist in the
// directory.
const hasTypescriptFiles =
const hasTypeScriptFiles =
getFilesByExtensions("./", [".ts", ".tsx"]).length > 0;
const hasJavaScriptFiles =
getFilesByExtensions("./", [".js", ".jsx"]).length > 0;
@@ -57,7 +57,7 @@ while (directories.length) {
curDirectory.split("/").length - 1
)}- [ ] \`${curDirectory}\``
);
} else if (hasTypescriptFiles) {
} else if (hasTypeScriptFiles) {
console.log(
`${" ".repeat(
curDirectory.split("/").length - 1