PLC-lang/rusty

Sort error codes within their categories when printing with `plc config diagnostics`

Offen

#1.158 geöffnet am 15.03.2024

 (1 Kommentar) (1 Reaktion) (0 zugewiesene Personen)Rust (71 Forks)auto 404
enhancementgood first issuelow-priority

Repository-Metriken

Stars
 (351 Sterne)
PR-Merge-Metriken
 (PR-Metriken ausstehend)

Beschreibung

Is your feature request related to a problem? Please describe. Currently, if you want to see the error severity configuration and print it via plc config diagnostics, the error codes will be in a random order within their respective severity. If you then write the output to a json file, it will look something like this:

{
    "warning": [
        "E013",
        "E022",
        "E047",
        "E014",
        "E015",
        "E090",
        "E004",
        "E042",
        "E023",
        "E049",
        "E091",
        "E039",
        "E093",
        "E024",
        "E016"
    ],

    ...
}

Describe the solution you'd like Sort the error codes in their categories ascendingly, to make it easier to find the codes you are looking for.

Contributor Guide