Skip to content

Commit

Permalink
fix schema (#202)
Browse files Browse the repository at this point in the history
  • Loading branch information
thiagowfx committed Aug 24, 2024
1 parent 44b683a commit f66e650
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -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."
},
Expand Down Expand Up @@ -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."
}
Expand Down

0 comments on commit f66e650

Please sign in to comment.