diff --git a/AUTHORS.rst b/AUTHORS.rst index 107d15f85..6b986d601 100644 --- a/AUTHORS.rst +++ b/AUTHORS.rst @@ -78,6 +78,8 @@ Contributors - Anthony Loiseau +- Apteryks + Translators ----------- diff --git a/CHANGELOG.md b/CHANGELOG.md index c30d816b7..48cd77493 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -54,6 +54,7 @@ CLI command and its behaviour. There are no guarantees of stability for the - Empty placeholders (`.empty`) (#862) - ShellCheck configuration (`.shellcheckrc`) (#862) - Pylint in-project configuration (`pylintrc`) (#862) + - Lisp schemes (`.sld`, `.sls`, `.sps`) (#875) - 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 239736dfa..d9c129165 100644 --- a/src/reuse/comment.py +++ b/src/reuse/comment.py @@ -712,8 +712,11 @@ class XQueryCommentStyle(CommentStyle): # SuperCollider synth definition (binary) ".scsyndef": UncommentableCommentStyle, ".sh": PythonCommentStyle, + ".sld": LispCommentStyle, # Scheme Library Definition (R7RS) + ".sls": LispCommentStyle, # Scheme Library Source (R6RS) ".sml": MlCommentStyle, ".soy": CCommentStyle, + ".sps": LispCommentStyle, # Scheme Program Source (R6RS) ".sql": HaskellCommentStyle, ".sty": TexCommentStyle, ".svg": UncommentableCommentStyle,