Skip to content

Commit

Permalink
fix: Add .tfvars as a valid hcl file
Browse files Browse the repository at this point in the history
  • Loading branch information
jaysonsantos committed Jul 5, 2024
1 parent f850d3a commit d82738d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/language/src/target_language.rs
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,7 @@ impl PatternLanguage {
"rs" => Some(Self::Rust),
"rb" => Some(Self::Ruby),
"sol" => Some(Self::Solidity),
"hcl" | "tf" => Some(Self::Hcl),
"hcl" | "tf" | "tfvars" => Some(Self::Hcl),
"yaml" | "yml" => Some(Self::Yaml),
"sql" => Some(Self::Sql),
"vue" => Some(Self::Vue),
Expand Down

0 comments on commit d82738d

Please sign in to comment.