diff --git a/CHANGELOG.md b/CHANGELOG.md index fc43dc931..04f85a142 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -54,6 +54,8 @@ CLI command and its behaviour. There are no guarantees of stability for the - Cargo (`Cargo.lock`) (#937) - Clang-Tidy (`.clang-tidy`) (#961) - Java `.properties` files (#968) + - Apache HTTP server config `.htaccess` files (#985) + - npm `.npmrc` files (#985) - Added comment styles: - `man` for UNIX Man pages (`.man`) (#954) diff --git a/src/reuse/comment.py b/src/reuse/comment.py index 699910523..0693c591b 100644 --- a/src/reuse/comment.py +++ b/src/reuse/comment.py @@ -842,10 +842,12 @@ class XQueryCommentStyle(CommentStyle): ".gitattributes": PythonCommentStyle, ".gitignore": PythonCommentStyle, ".gitmodules": PythonCommentStyle, + ".htaccess": PythonCommentStyle, ".mailmap": PythonCommentStyle, ".metadata": UncommentableCommentStyle, ".mdlrc": PythonCommentStyle, # Markdown-linter config ".npmignore": PythonCommentStyle, + ".npmrc": SemicolonCommentStyle, ".prettierrc": UncommentableCommentStyle, # could either be JSON or YAML ".prettierignore": PythonCommentStyle, ".pylintrc": PythonCommentStyle,