Skip to content

Commit 538f72e

Browse files
committed
chore: update implementation
1 parent 6a11512 commit 538f72e

2 files changed

Lines changed: 4 additions & 1 deletion

File tree

.golangci.next.reference.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1609,6 +1609,7 @@ linters:
16091609
- G707 # SMTP command/header injection via taint analysis
16101610
- G708 # Server-side template injection via taint analysis
16111611
- G709 # Unsafe deserialization of untrusted data via taint analysis
1612+
- G710 # Open redirect via taint analysis
16121613

16131614
# To specify a set of rules to explicitly exclude.
16141615
# Available rules: https://github.com/securego/gosec#available-rules
@@ -1673,6 +1674,7 @@ linters:
16731674
- G707 # SMTP command/header injection via taint analysis
16741675
- G708 # Server-side template injection via taint analysis
16751676
- G709 # Unsafe deserialization of untrusted data via taint analysis
1677+
- G710 # Open redirect via taint analysis
16761678

16771679
# Filter out the issues with a lower severity than the given value.
16781680
# Valid options are: low, medium, high.

jsonschema/golangci.next.jsonschema.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -551,7 +551,8 @@
551551
"G706",
552552
"G707",
553553
"G708",
554-
"G709"
554+
"G709",
555+
"G710"
555556
]
556557
},
557558
"govet-analyzers": {

0 commit comments

Comments
 (0)