We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6df90d5 commit 82e207cCopy full SHA for 82e207c
src/cluecode/copyrights.py
@@ -726,6 +726,9 @@ def build_detection_from_node(
726
# Short words skipping some leading caps
727
(r'^[BEFHJMNPQRTUVW][a-z]$', 'NN'),
728
729
+ # three or more AsCamelCase GetQueueReference
730
+ (r'^([A-Z][a-z]+){3,}$', 'JUNK'),
731
+
732
# misc exceptions
733
(r'^dead_horse$', 'NN'),
734
(r'^A11yance', 'NNP'),
@@ -897,6 +900,7 @@ def build_detection_from_node(
897
900
(r'^Should$', 'JUNK'),
898
901
(r'^[Ll]icensing\@?$', 'JUNK'),
899
902
(r'^Disclaimer$', 'JUNK'),
903
+ (r'^Directive$', 'JUNK'),
904
(r'^LAWS\,?$', 'JUNK'),
905
(r'^[Ll]aws?,?$', 'JUNK'),
906
(r'^me$', 'JUNK'),
0 commit comments