You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Seems that toml doesn't support different data types within array. Problem is guessing what user meant with this statement and to which value it should be converted to. Reporting anyway. Great tool overall.
The text was updated successfully, but these errors were encountered:
This is a restriction in TOML v0.4 (which is what remarshal supports). The restriction was relaxed in later versions through toml-lang/toml#665. The issue will be resolved with issue #19.
Invalid conversion from Json array to TOML array
JSON Input file:
TOML output file:
data = [1, 1.7, 3]
https://www.toml-lint.com/
3 should be of type "Float".
Seems that toml doesn't support different data types within array. Problem is guessing what user meant with this statement and to which value it should be converted to. Reporting anyway. Great tool overall.
The text was updated successfully, but these errors were encountered: