Merge pull request #6445 from RainbowMango/pr_fix_promlint_order_algo
Fix promlint order algorithm not work issue
This commit is contained in:
commit
e53f751765
|
@ -87,6 +87,8 @@ func (l *Linter) Lint() ([]Problem, error) {
|
|||
sort.SliceStable(problems, func(i, j int) bool {
|
||||
if problems[i].Metric < problems[j].Metric {
|
||||
return true
|
||||
} else if problems[i].Metric > problems[j].Metric {
|
||||
return false
|
||||
}
|
||||
|
||||
return problems[i].Text < problems[j].Text
|
||||
|
|
Loading…
Reference in New Issue