From 672e031404e52d35bc414ea8936dd4c8f2c0efea Mon Sep 17 00:00:00 2001 From: Thiago Perrotta Date: Sat, 24 Aug 2024 00:51:08 +0200 Subject: [PATCH] fix schema --- schema.json | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/schema.json b/schema.json index 2ae0f53..d5b234c 100644 --- a/schema.json +++ b/schema.json @@ -7,7 +7,10 @@ "properties": { "line_ending": { "type": "string", - "enum": ["lf", "crlf"], + "enum": [ + "lf", + "crlf" + ], "default": "lf", "description": "Parse and write the file with 'lf' or 'crlf' line endings. This global setting will override any formatter line_ending options." }, @@ -74,14 +77,14 @@ "type": "string", "default": "basic" } - }, - "additionalProperties": { - "type": "any" } }, "output_format": { "type": "string", - "enum": ["default", "line"], + "enum": [ + "default", + "line" + ], "default": "default", "description": "The output format to use. See Output docs for more details." }