diff --git a/CHANGELOG.md b/CHANGELOG.md index a79016090..f19aedaed 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -49,6 +49,7 @@ CLI command and its behaviour. There are no guarantees of stability for the - Various .NET files (`.csproj`, `.fsproj`, `.fsx`, `.props`, `.sln`, `.vbproj`) (#940) - Cargo (`Cargo.lock`) (#937) + - Clang-Tidy (`.clang-tidy`) (#961) - Added comment styles: - `man` for UNIX Man pages (`.man`) (#954) diff --git a/src/reuse/comment.py b/src/reuse/comment.py index 4e7ca321b..92782466f 100644 --- a/src/reuse/comment.py +++ b/src/reuse/comment.py @@ -831,6 +831,7 @@ class XQueryCommentStyle(CommentStyle): ".bazelrc": PythonCommentStyle, ".browserslist": PythonCommentStyle, ".clang-format": PythonCommentStyle, + ".clang-tidy": PythonCommentStyle, ".coveragerc": PythonCommentStyle, ".dockerignore": PythonCommentStyle, ".editorconfig": PythonCommentStyle,