From fc2a99bb1f4b5c1562db846fe8074223553f3e1e Mon Sep 17 00:00:00 2001 From: Andy Freeland Date: Wed, 19 Aug 2020 13:28:14 -0700 Subject: [PATCH] ignore/types: add vcl (#1659) VCL is the Varnish Configuration Language used by Varnish and Fastly. https://varnish-cache.org/docs/trunk/users-guide/vcl.html PR #1659 --- 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 dce6f29..079843a 100644 --- a/crates/ignore/src/default_types.rs +++ b/crates/ignore/src/default_types.rs @@ -224,6 +224,7 @@ pub const DEFAULT_TYPES: &[(&str, &[&str])] = &[ ("typoscript", &["*.typoscript", "*.ts"]), ("vala", &["*.vala"]), ("vb", &["*.vb"]), + ("vcl", &["*.vcl"]), ("verilog", &["*.v", "*.vh", "*.sv", "*.svh"]), ("vhdl", &["*.vhd", "*.vhdl"]), ("vim", &["*.vim"]),