Skip to content

Commit 1e7e0c4

Browse files
authored
Merge pull request #2 from Baya-Systems/copilot/support-yaml-systemverilog-files
Add support for SystemVerilog file extensions (.sv, .v, .inc)
2 parents 735a2a4 + 220c0fd commit 1e7e0c4

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

importer/tag/src/main/java/org/itsallcode/openfasttrace/importer/tag/TagImporterFactory.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ public class TagImporterFactory extends ImporterFactory
3737
"r", // R Language
3838
"rs", // Rust
3939
"sh", "bash", "zsh", // Shell programming
40+
"sv", "v", "inc", // SystemVerilog
4041
"swift", // Swift
4142
"toml", // Tom's Obvious Minimal Language : a config file format
4243
"tf", "tfvars", // Terraform

importer/tag/src/test/java/org/itsallcode/openfasttrace/importer/tag/TestTagImporterFactory.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ protected List<String> getSupportedFilenames()
2929
"foo.conf", "foo.cpp", "foo.cs", "foo.feature", "foo.groovy", "foo.h", "foo.H", "foo.hh", "foo.h++",
3030
"foo.htm", "foo.html", "foo.ini", "foo.js", "foo.mjs", "foo.cjs", "foo.ejs", "foo.ts", "foo.json",
3131
"foo.lua", "foo.m", "foo.mm", "foo.php", "foo.pl", "foo.pls", "foo.pm", "foo.py", "foo.sql", "foo.r",
32-
"foo.rs", "foo.sh", "foo.yaml", "foo.yml", "foo.xhtml", "foo.zsh", "foo.clj", "foo.kt", "foo.scala",
32+
"foo.rs", "foo.sh", "foo.sv", "foo.v", "foo.inc", "foo.yaml", "foo.yml", "foo.xhtml", "foo.zsh", "foo.clj", "foo.kt", "foo.scala",
3333
"foo.pu", "foo.puml", "foo.plantuml", "foo.go", "foo.robot", "foo.tf", "foo.tfvars", "foo.toml");
3434
}
3535

0 commit comments

Comments
 (0)