From d86cf6b1ebdcd5a17cd60748aca4602f5ef9f70f Mon Sep 17 00:00:00 2001 From: OniriCorpe Date: Fri, 23 Feb 2024 18:38:17 +0100 Subject: [PATCH] fix for .js config files --- package_linter.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_linter.py b/package_linter.py index 9e3d439..c1d6ea0 100755 --- a/package_linter.py +++ b/package_linter.py @@ -1575,7 +1575,7 @@ class Configurations(TestSuite): return for number, line in enumerate(content.split("\n"), 1): - comment = ("#", "//", ";") + comment = ("#", "//", ";", "/**", "*") if ( ( "0.0.0.0" in line or "::" in line ) and not line.strip().startswith(comment)