2025-02-08 08:49:16 +00:00
|
|
|
using System.Text.Json;
|
|
|
|
|
|
|
|
namespace PkmnLib.Dataloader;
|
|
|
|
|
|
|
|
internal static class JsonOptions
|
|
|
|
{
|
2025-03-02 16:19:57 +00:00
|
|
|
public static JsonSerializerOptions DefaultOptions => new()
|
2025-02-08 08:49:16 +00:00
|
|
|
{
|
|
|
|
PropertyNameCaseInsensitive = true,
|
|
|
|
AllowTrailingCommas = true,
|
|
|
|
ReadCommentHandling = JsonCommentHandling.Skip,
|
|
|
|
};
|
|
|
|
}
|