From e4bce86111fe399c5e3cc54e70683f6f726283d8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?M=C3=A5rten=20Kongstad?= Date: Fri, 15 Jun 2018 12:29:34 +0200 Subject: [PATCH] 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 --- ignore/src/types.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/ignore/src/types.rs b/ignore/src/types.rs index 288da19..d01d4f7 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"]),