From ba965962fe2fc3513aeeaa99665f09099d92045d Mon Sep 17 00:00:00 2001 From: jack1142 <6032823+jack1142@users.noreply.github.com> Date: Fri, 28 May 2021 18:06:10 +0200 Subject: [PATCH] ignore/types: add po files to supported types See: https://www.gnu.org/software/gettext/manual/html_node/PO-Files.html Closes #1875 --- crates/ignore/src/default_types.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/crates/ignore/src/default_types.rs b/crates/ignore/src/default_types.rs index 2b5c4823..52d7d948 100644 --- a/crates/ignore/src/default_types.rs +++ b/crates/ignore/src/default_types.rs @@ -156,6 +156,7 @@ pub const DEFAULT_TYPES: &[(&str, &[&str])] = &[ ("pdf", &["*.pdf"]), ("perl", &["*.perl", "*.pl", "*.PL", "*.plh", "*.plx", "*.pm", "*.t"]), ("php", &["*.php", "*.php3", "*.php4", "*.php5", "*.phtml"]), + ("po", &["*.po"]), ("pod", &["*.pod"]), ("postscript", &["*.eps", "*.ps"]), ("protobuf", &["*.proto"]),