diff options
| author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2021-07-13 21:27:18 -0400 | 
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-07-13 21:27:18 -0400 | 
| commit | 260d10c3a34e7da6fd94b6151422ab09f3941c0b (patch) | |
| tree | 8d0a4e6c8e4a479cc4d92adf3c8ed5f77369c89e | |
| parent | d058237ba724c3fee842d90c04b1950c9efaadc0 (diff) | |
Fix invalid default value in options schema (#1827)
| -rw-r--r-- | ext/data/schemas/options-schema.json | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/ext/data/schemas/options-schema.json b/ext/data/schemas/options-schema.json index 52e5fa1f..1565cfe6 100644 --- a/ext/data/schemas/options-schema.json +++ b/ext/data/schemas/options-schema.json @@ -950,7 +950,7 @@                                      "terminationCharacterMode": {                                          "type": "string",                                          "enum": ["custom", "custom-no-newlines", "newlines", "none"], -                                        "default": true +                                        "default": "custom"                                      },                                      "terminationCharacters": {                                          "type": "array", |