summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrew Gallant <jamslam@gmail.com>2017-03-12 16:51:55 -0400
committerAndrew Gallant <jamslam@gmail.com>2017-03-12 16:51:55 -0400
commitf5ede0e31942825fc1329f7dfbba0c3ef4bb560f (patch)
tree5c928d501333d6539fa3670317cef368fc9881a9
parent6ecffec53700a813d4b0cb192d703341a1641122 (diff)
Add scss and ejs.
We add scss to the existing `css` file type and `ejs` to the existing `html` file type. Fixes #393
-rw-r--r--ignore/src/types.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/ignore/src/types.rs b/ignore/src/types.rs
index 96497620..6fb97e1e 100644
--- a/ignore/src/types.rs
+++ b/ignore/src/types.rs
@@ -116,7 +116,7 @@ const DEFAULT_TYPES: &'static [(&'static str, &'static [&'static str])] = &[
("crystal", &["Projectfile", "*.cr"]),
("cs", &["*.cs"]),
("csharp", &["*.cs"]),
- ("css", &["*.css"]),
+ ("css", &["*.css", "*.scss"]),
("cython", &["*.pyx"]),
("dart", &["*.dart"]),
("d", &["*.d"]),
@@ -134,7 +134,7 @@ const DEFAULT_TYPES: &'static [(&'static str, &'static [&'static str])] = &[
("h", &["*.h", "*.hpp"]),
("hbs", &["*.hbs"]),
("haskell", &["*.hs", "*.lhs"]),
- ("html", &["*.htm", "*.html"]),
+ ("html", &["*.htm", "*.html", "*.ejs"]),
("java", &["*.java"]),
("jinja", &["*.jinja", "*.jinja2"]),
("js", &[