diff --git a/CHANGELOG.md b/CHANGELOG.md index e6d4206a7..34a3fad66 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -47,6 +47,11 @@ CLI command and its behaviour. There are no guarantees of stability for the - More file types are recognised: - Julia (`.jl`) (#815) - Modern Fortran (`.f90`) (#836) + - GNU Linker script (`.ld`) (#862) + - Assembly code (`.s`) (#862) + - Empty placeholders (`.empty`) (#862) + - ShellCheck configuration (`.shellcheckrc`) (#862) + - Pylint in-project configuration (`pylintrc`) (#862) - Display recommendations for steps to fix found issues during a lint. (#698) - Add support for Pijul VCS. Pijul support is not added to the Docker image. (#858) diff --git a/src/reuse/comment.py b/src/reuse/comment.py index 218d2305e..705237c7f 100644 --- a/src/reuse/comment.py +++ b/src/reuse/comment.py @@ -629,6 +629,7 @@ class XQueryCommentStyle(CommentStyle): ".kts": CCommentStyle, ".l": LispCommentStyle, ".latex": TexCommentStyle, + ".ld": CCommentStyle, ".less": CssCommentStyle, ".license": EmptyCommentStyle, ".lisp": LispCommentStyle, @@ -697,6 +698,7 @@ class XQueryCommentStyle(CommentStyle): ".rs": CCommentStyle, ".rss": HtmlCommentStyle, ".rst": ReStructedTextCommentStyle, + ".s": LispCommentStyle, ".sass": CssCommentStyle, ".sbt": CCommentStyle, ".sc": CCommentStyle, # SuperCollider source file @@ -763,6 +765,7 @@ class XQueryCommentStyle(CommentStyle): ".coveragerc": PythonCommentStyle, ".dockerignore": PythonCommentStyle, ".editorconfig": PythonCommentStyle, + ".empty": EmptyCommentStyle, ".eslintignore": PythonCommentStyle, ".eslintrc": UncommentableCommentStyle, ".gitattributes": PythonCommentStyle, @@ -777,6 +780,7 @@ class XQueryCommentStyle(CommentStyle): ".pylintrc": PythonCommentStyle, ".Renviron": PythonCommentStyle, ".Rprofile": PythonCommentStyle, + ".shellcheckrc": PythonCommentStyle, ".vimrc": VimCommentStyle, ".yarnrc": PythonCommentStyle, "ansible.cfg": PythonCommentStyle, @@ -800,6 +804,7 @@ class XQueryCommentStyle(CommentStyle): "meson.build": PythonCommentStyle, "meson_options.txt": PythonCommentStyle, "pubspec.lock": UncommentableCommentStyle, + "pylintrc": PythonCommentStyle, "Rakefile": PythonCommentStyle, "requirements.txt": PythonCommentStyle, "ROOT": MlCommentStyle,