Skip to content

Commit 33d23b5

Browse files
committed
Add support for TypeScript files
1 parent f44038c commit 33d23b5

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

tools/git/scripts/annotate_file_type.awk

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -152,6 +152,10 @@
152152
print "SVG" OFS $1 OFS $2
153153
next
154154
}
155+
/\.ts$/ {
156+
print "TypeScript" OFS $1 OFS $2
157+
next
158+
}
155159
/\.txt$/ {
156160
print "plaintext" OFS $1 OFS $2
157161
next

0 commit comments

Comments
 (0)