lint: ignore LICENSE* and COPYING*

Fixes: OS#6397
Change-Id: I859e9d7fdff5eeb86c24947031522a8123830f0c
This commit is contained in:
Oliver Smith 2024-03-11 09:44:17 +01:00
parent 61723f812c
commit a0b7b49813
1 changed files with 2 additions and 0 deletions

View File

@ -10,6 +10,8 @@ exclude_paths_common() {
echo '--exclude ^debian/changelog$'
# Patch files
echo '--exclude \.patch$'
# License files (OS#6397)
echo '--exclude ^(LICENSE|COPYING)'
# Symlinks (no newline at end of file)
find -type l -printf '--exclude ^%P$\n'
}