Skip to content

Commit

Permalink
Ignore .sl directory the same way as .hg.
Browse files Browse the repository at this point in the history
The .sl directory is used by Sapling (https://sapling-scm.com/) so
it should be handled like the other SCM directories.
  • Loading branch information
Flameeyes committed Nov 24, 2023
1 parent 4de4450 commit 1526aa1
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/reuse/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@
_IGNORE_DIR_PATTERNS = [
re.compile(r"^\.git$"),
re.compile(r"^\.hg$"),
re.compile(r"^\.sl$"),
re.compile(r"^LICENSES$"),
re.compile(r"^\.reuse$"),
]
Expand Down

0 comments on commit 1526aa1

Please sign in to comment.