From b38ed0fa7bb909ee363c245408538cfe85357bb3 Mon Sep 17 00:00:00 2001 From: Oliver Klee Date: Tue, 24 Nov 2020 02:01:21 +0100 Subject: [PATCH] [BUGFIX] Stop treating *.ts files as TypoScript in the .editorconfig (#165) `*.ts` are TypeScript files, not TypoScript files. --- .editorconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.editorconfig b/.editorconfig index 0c43779..e532b87 100644 --- a/.editorconfig +++ b/.editorconfig @@ -50,7 +50,7 @@ indent_style = space indent_size = 3 # TypoScript files -[*.typoscript,*.ts] +[*.typoscript] indent_style = space indent_size = 4