forked from fsfe/reuse-tool
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request fsfe#1015 from kbroch-rivosinc/dev/kbroch/dev/kbro…
- Loading branch information
Showing
2 changed files
with
12 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,22 @@ | ||
# SPDX-FileCopyrightText: 2019 Free Software Foundation Europe e.V. <https://fsfe.org> | ||
# SPDX-FileCopyrightText: 2019 Kirill Elagin | ||
# SPDX-FileCopyrightText: 2020 Dmitry Bogatov | ||
# SPDX-FileCopyrightText: 2021-2022 Alliander N.V. <https://alliander.com> | ||
# SPDX-FileCopyrightText: 2021 Alvar Penning | ||
# SPDX-FileCopyrightText: 2021 Robin Vobruba <[email protected]> | ||
# SPDX-FileCopyrightText: 2021 Matija Šuklje <[email protected]> | ||
# SPDX-FileCopyrightText: 2021 Robin Vobruba <[email protected]> | ||
# SPDX-FileCopyrightText: 2021-2022 Alliander N.V. <https://alliander.com> | ||
# SPDX-FileCopyrightText: 2022 Carmen Bianca Bakker <[email protected]> | ||
# SPDX-FileCopyrightText: 2022 Florian Snow <[email protected]> | ||
# SPDX-FileCopyrightText: 2022 Nico Rikken <[email protected]> | ||
# SPDX-FileCopyrightText: 2022 Stefan Hynek <[email protected]> | ||
# SPDX-FileCopyrightText: 2022 Carmen Bianca Bakker <[email protected]> | ||
# SPDX-FileCopyrightText: 2022 Sebastian Crane <[email protected]> | ||
# SPDX-FileCopyrightText: 2023 Redradix S.L. <[email protected]> | ||
# SPDX-FileCopyrightText: 2022 Stefan Hynek <[email protected]> | ||
# SPDX-FileCopyrightText: 2023 Juelich Supercomputing Centre, Forschungszentrum Juelich GmbH | ||
# SPDX-FileCopyrightText: 2023 Kevin Meagher | ||
# SPDX-FileCopyrightText: 2023 Mathias Dannesbo <[email protected]> | ||
# SPDX-FileCopyrightText: 2023 Shun Sakai <[email protected]> | ||
# SPDX-FileCopyrightText: 2023 Juelich Supercomputing Centre, Forschungszentrum Juelich GmbH | ||
# SPDX-FileCopyrightText: 2023 Maxim Cournoyer <[email protected]> | ||
# SPDX-FileCopyrightText: 2023 Redradix S.L. <[email protected]> | ||
# SPDX-FileCopyrightText: 2023 Shun Sakai <[email protected]> | ||
# SPDX-FileCopyrightText: 2024 Rivos Inc. | ||
# | ||
# SPDX-License-Identifier: GPL-3.0-or-later | ||
|
||
|
@@ -700,6 +701,7 @@ class XQueryCommentStyle(CommentStyle): | |
".lisp": LispCommentStyle, | ||
".lsp": LispCommentStyle, | ||
".lua": HaskellCommentStyle, | ||
".m": TexCommentStyle, | ||
".m4": M4CommentStyle, | ||
".man": UnixManCommentStyle, | ||
".markdown": HtmlCommentStyle, | ||
|
@@ -808,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 | ||
|