Skip to content

Latest commit

 

History

History
19 lines (13 loc) · 336 Bytes

1012.md

File metadata and controls

19 lines (13 loc) · 336 Bytes

1012

In a millet.toml config file, a key of the diagnostics table was not a valid error code.

A valid error code will be a positive integer. This will error:

[diagnostics]
foo.severity = "ignore"

To fix

Make the key of the diagnostics table an error code.

[diagnostics]
5034.severity = "ignore"