We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8825b1a commit e4fa162Copy full SHA for e4fa162
prompts/eslint/scripts/lint-standardjs.sh
@@ -23,7 +23,7 @@ else
23
FILES=$(echo $ARGS | jq -r '.files[]')
24
fi
25
26
-echo "Running eslint with typescript: $TYPESCRIPT, fix: $FIX, files: $FILES"
+echo "Running StandardJS..."
27
28
# If typescript is false, run standard
29
if [ $TYPESCRIPT == 'false' ]; then
@@ -32,6 +32,8 @@ if [ $TYPESCRIPT == 'false' ]; then
32
exit $?
33
34
35
+echo "Running ts-standard..."
36
+
37
TS_FILES=$(echo $FILES | grep -E "\.ts$|\.tsx$")
38
39
#Make sure all $TS_FILES start with $PROJECT_DIR, or add it
@@ -82,4 +84,5 @@ for TS_ROOT in $TS_ROOTS; do
82
84
done
83
85
86
echo $TS_OUTPUT
87
88
exit $EXIT_CODE
0 commit comments