From ad48a9affe8a72fdee20ebca4c8b51b2c2cab875 Mon Sep 17 00:00:00 2001 From: Kevin Broch <86068473+kbroch-rivosinc@users.noreply.github.com> Date: Fri, 28 Jun 2024 20:45:15 -0700 Subject: [PATCH] add vhdl file support #564 --- CHANGELOG.md | 1 + src/reuse/comment.py | 1 + 2 files changed, 2 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index e718d9fb3..44ae72761 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -53,6 +53,7 @@ CLI command and its behaviour. There are no guarantees of stability for the - Perl test (`.t`) (#997) - BATS test (`.bats`) (#997) - Octave/Matlab (`.m`) (#604) + - VHDL(`.vhdl`) (#564) - Support alternate spelling `--skip-unrecognized`. (#974) - In `annotate`, rename `--copyright-style` to `--copyright-prefix`. The former parameter is still supported. (#973) diff --git a/src/reuse/comment.py b/src/reuse/comment.py index e4c4ad1d3..0e5514113 100644 --- a/src/reuse/comment.py +++ b/src/reuse/comment.py @@ -810,6 +810,7 @@ class XQueryCommentStyle(CommentStyle): ".v": CppCommentStyle, # V-Lang source code ".vala": CppCommentStyle, ".vbproj": HtmlCommentStyle, + ".vhdl": HaskellCommentStyle, ".vim": VimCommentStyle, ".vm": VelocityCommentStyle, ".vsh": CppCommentStyle, # V-Lang script