From b19588e601b490db919afeb2a155fbe4c120d289 Mon Sep 17 00:00:00 2001 From: Ajob Kustra Date: Tue, 27 Aug 2024 13:09:28 +0200 Subject: [PATCH] Add support for TS+TSX files --- src/unbeheader/__init__.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/unbeheader/__init__.py b/src/unbeheader/__init__.py index 95c5dfa..4934b74 100644 --- a/src/unbeheader/__init__.py +++ b/src/unbeheader/__init__.py @@ -19,9 +19,15 @@ 'js': SupportedFileType( re.compile(r'/\*(.|[\r\n])*?\*/|((^//|[\r\n]//).*)*'), CommentSkeleton('//', '//')), + 'ts': SupportedFileType( + re.compile(r'/\*(.|[\r\n])*?\*/|((^//|[\r\n]//).*)*'), + CommentSkeleton('//', '//')), 'jsx': SupportedFileType( re.compile(r'/\*(.|[\r\n])*?\*/|((^//|[\r\n]//).*)*'), CommentSkeleton('//', '//')), + 'tsx': SupportedFileType( + re.compile(r'/\*(.|[\r\n])*?\*/|((^//|[\r\n]//).*)*'), + CommentSkeleton('//', '//')), 'css': SupportedFileType( re.compile(r'/\*(.|[\r\n])*?\*/'), CommentSkeleton('/*', ' *', ' */')),