diff options
author | David Sherret <dsherret@users.noreply.github.com> | 2023-01-25 15:06:00 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-25 15:06:00 -0500 |
commit | b5b4887c4a5fefdeb5592ebaadcc941281d0c4d5 (patch) | |
tree | 081ba2ca6a8137b05c3b68a2015f91d5bdb0796a /cli/schemas | |
parent | 83642976bf267c81f36742793a5a4a9250f54591 (diff) |
feat(fmt): make semi-colon option a boolean (#17527)
Diffstat (limited to 'cli/schemas')
-rw-r--r-- | cli/schemas/config-file.v1.json | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/cli/schemas/config-file.v1.json b/cli/schemas/config-file.v1.json index 96b1f202b..675a763a4 100644 --- a/cli/schemas/config-file.v1.json +++ b/cli/schemas/config-file.v1.json @@ -324,11 +324,8 @@ }, "semiColons": { "description": "Whether to prefer using semicolons.", - "default": "prefer", - "enum": [ - "prefer", - "asi" - ] + "type": "boolean", + "default": true } } } |