summaryrefslogtreecommitdiffstats
path: root/ignore
diff options
context:
space:
mode:
authorMÃ¥rten Kongstad <marten.kongstad@gmail.com>2018-06-15 12:29:34 +0200
committerAndrew Gallant <jamslam@gmail.com>2018-06-15 08:29:53 -0400
commite4bce86111fe399c5e3cc54e70683f6f726283d8 (patch)
tree95785dc302abe1539743f46f5fb841257c69f303 /ignore
parent15fa77cdb384e013165687f361073defa02d9d98 (diff)
ignore/types: add AIDL file type
Add support for Android Interface Definition Language files (*.aidl). See [1] for more information. 1. https://developer.android.com/guide/components/aidl
Diffstat (limited to 'ignore')
-rw-r--r--ignore/src/types.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/ignore/src/types.rs b/ignore/src/types.rs
index 288da199..d01d4f76 100644
--- a/ignore/src/types.rs
+++ b/ignore/src/types.rs
@@ -98,6 +98,7 @@ use {Error, Match};
const DEFAULT_TYPES: &'static [(&'static str, &'static [&'static str])] = &[
("agda", &["*.agda", "*.lagda"]),
+ ("aidl", &["*.aidl"]),
("asciidoc", &["*.adoc", "*.asc", "*.asciidoc"]),
("asm", &["*.asm", "*.s", "*.S"]),
("avro", &["*.avdl", "*.avpr", "*.avsc"]),