Skip to content

Commit e4fa162

Browse files
author
Colin McNeil
committed
Update standardjs image output
1 parent 8825b1a commit e4fa162

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

prompts/eslint/scripts/lint-standardjs.sh

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ else
2323
FILES=$(echo $ARGS | jq -r '.files[]')
2424
fi
2525

26-
echo "Running eslint with typescript: $TYPESCRIPT, fix: $FIX, files: $FILES"
26+
echo "Running StandardJS..."
2727

2828
# If typescript is false, run standard
2929
if [ $TYPESCRIPT == 'false' ]; then
@@ -32,6 +32,8 @@ if [ $TYPESCRIPT == 'false' ]; then
3232
exit $?
3333
fi
3434

35+
echo "Running ts-standard..."
36+
3537
TS_FILES=$(echo $FILES | grep -E "\.ts$|\.tsx$")
3638

3739
#Make sure all $TS_FILES start with $PROJECT_DIR, or add it
@@ -82,4 +84,5 @@ for TS_ROOT in $TS_ROOTS; do
8284
done
8385

8486
echo $TS_OUTPUT
87+
8588
exit $EXIT_CODE

0 commit comments

Comments
 (0)