Skip to content

Commit ca8efbd

Browse files
committed
Detect NN/EMAIL copyright combo #3764
Make detection of copyright with a single lowercase name more specific Reference: #3764 Reported-by: Anton Augsburg @vw-anton Signed-off-by: Philippe Ombredanne <[email protected]>
1 parent 753c492 commit ca8efbd

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

src/cluecode/copyrights.py

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -717,7 +717,7 @@ def build_detection_from_node(
717717

718718
############################################################################
719719
# JUNK are things to ignore
720-
# Exceptions to JUNK
720+
# These are exceptions to JUNK
721721
############################################################################
722722

723723
# trailing parens: notice(s) and exceptions
@@ -1168,6 +1168,10 @@ def build_detection_from_node(
11681168
# :co,e):f
11691169
(r'^[\:,\)]+[a-z]+[\:,]+[a-z]+[\:,\)]+[a-z\:,\)]*$', 'JUNK'),
11701170

1171+
# NN often used in conjunction with copyright
1172+
(r'^[Ss]tatements?.?$', 'JUNK'),
1173+
(r'^issues?.?$', 'JUNK'),
1174+
11711175
############################################################################
11721176
# Nouns and proper Nouns
11731177
############################################################################
@@ -2718,9 +2722,11 @@ def build_detection_from_node(
27182722
# Copyright (c) 2019-2021, Open source contributors.
27192723
# Copyright 2007 ZXing authors
27202724
# Copyright (c) 2002 the Initial Developer
2721-
# Copyright (c) brandonocasey <[email protected]>
27222725
# Copyright (c) 2024 bgme <[email protected]>.
2723-
COPYRIGHT: {<COPY>+ <YR-RANGE>? <NN>+ <CONTRIBUTORS|COMMIT|AUTHS|MAINT>? <EMAIL>? <ALLRIGHTRESERVED>?} #22793.3
2726+
COPYRIGHT: {<COPY>+ <YR-RANGE> <NN>+ <CONTRIBUTORS|COMMIT|AUTHS|MAINT>? <EMAIL>? <ALLRIGHTRESERVED>?} #22793.3
2727+
2728+
# Copyright (c) brandonocasey <[email protected]>
2729+
COPYRIGHT: {<COPY><COPY>? <NN> <EMAIL> <ALLRIGHTRESERVED>?} #22793.4
27242730
27252731
# Licensed material of Foobar Company, All Rights Reserved, (C) 2005
27262732
COPYRIGHT: {<COMPANY> <ALLRIGHTRESERVED> <COPYRIGHT>} #22794

0 commit comments

Comments
 (0)