Skip to content

Commit

Permalink
Change: Disable strict_query
Browse files Browse the repository at this point in the history
  • Loading branch information
n-thumann committed Oct 22, 2024
1 parent 4922e99 commit 210c494
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion troubadix/plugins/script_xref_url.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ def check_content(
for match in matches:
if match:
if match.group("value") not in ALLOWED_URLS and not url(
match.group("value")
match.group("value"), strict_query=False
):
yield LinterError(
f"{match.group(0)}: Invalid URL value",
Expand Down

0 comments on commit 210c494

Please sign in to comment.