From 42afb6faa5dbc9d11aa94a49691997093d21b237 Mon Sep 17 00:00:00 2001 From: Michael Vitz Date: Tue, 22 Nov 2016 11:17:10 +0100 Subject: [PATCH 1/2] Add type for Sass Sass files use .scss as extension. --- ignore/src/types.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/ignore/src/types.rs b/ignore/src/types.rs index 38caf3b2..af78a224 100644 --- a/ignore/src/types.rs +++ b/ignore/src/types.rs @@ -148,6 +148,7 @@ const DEFAULT_TYPES: &'static [(&'static str, &'static [&'static str])] = &[ ("rst", &["*.rst"]), ("ruby", &["*.rb"]), ("rust", &["*.rs"]), + ("sass", &["*.scss"]), ("scala", &["*.scala"]), ("sh", &["*.bash", "*.csh", "*.ksh", "*.sh", "*.tcsh"]), ("spark", &["*.spark"]), From 42223047a858240cfeabcde4fd99b7395b34b297 Mon Sep 17 00:00:00 2001 From: Michael Vitz Date: Tue, 22 Nov 2016 11:19:24 +0100 Subject: [PATCH 2/2] Add type for Less Less files use .less as extension. --- ignore/src/types.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/ignore/src/types.rs b/ignore/src/types.rs index af78a224..44835450 100644 --- a/ignore/src/types.rs +++ b/ignore/src/types.rs @@ -123,6 +123,7 @@ const DEFAULT_TYPES: &'static [(&'static str, &'static [&'static str])] = &[ ]), ("json", &["*.json"]), ("jsonl", &["*.jsonl"]), + ("less", &["*.less"]), ("lisp", &["*.el", "*.jl", "*.lisp", "*.lsp", "*.sc", "*.scm"]), ("lua", &["*.lua"]), ("m4", &["*.ac", "*.m4"]),