Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 92f626f

Browse files
committedDec 21, 2020
Don't run Library Manager-specific checks on bundled libraries
These checks are irrelevant for bundled libraries.
1 parent 95701c0 commit 92f626f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎internal/rule/ruleconfiguration/ruleconfiguration.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -427,7 +427,7 @@ var configurations = []Type{
427427
},
428428
{
429429
ProjectType: projecttype.Library,
430-
SuperprojectType: projecttype.All,
430+
SuperprojectType: projecttype.Library,
431431
Category: "library.properties",
432432
Subcategory: "name field",
433433
ID: "LP012",
@@ -507,7 +507,7 @@ var configurations = []Type{
507507
},
508508
{
509509
ProjectType: projecttype.Library,
510-
SuperprojectType: projecttype.All,
510+
SuperprojectType: projecttype.Library,
511511
Category: "library.properties",
512512
Subcategory: "name field",
513513
ID: "LP017",

0 commit comments

Comments
 (0)
Please sign in to comment.