From 41695c66fa7d423f961e09741cc75a1b8488e081 Mon Sep 17 00:00:00 2001 From: Luca Kredel Date: Fri, 7 Feb 2020 14:41:00 +0100 Subject: [PATCH] ignore/types: add typoscript file type Add the file types for TypoScript - the configuration language of the TYPO3 CMS. PR #1477 --- ignore/src/types.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/ignore/src/types.rs b/ignore/src/types.rs index 4eff9148..195e4605 100644 --- a/ignore/src/types.rs +++ b/ignore/src/types.rs @@ -297,6 +297,7 @@ const DEFAULT_TYPES: &'static [(&'static str, &'static [&'static str])] = &[ ("txt", &["*.txt"]), ("toml", &["*.toml", "Cargo.lock"]), ("twig", &["*.twig"]), + ("typoscript", &["*.typoscript", "*.ts"]), ("vala", &["*.vala"]), ("vb", &["*.vb"]), ("verilog", &["*.v", "*.vh", "*.sv", "*.svh"]),