-
Notifications
You must be signed in to change notification settings - Fork 46
/
schema.json
93 lines (93 loc) · 2.82 KB
/
schema.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://raw.githubusercontent.com/google/yamlfmt/main/schema.json",
"title": "yamlfmt config file",
"description": "The yamlfmt config file. For details, see https://github.com/google/yamlfmt/blob/main/docs/config-file.md.",
"type": "object",
"properties": {
"line_ending": {
"type": "string",
"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."
},
"doublestar": {
"type": "boolean",
"default": false,
"description": "Use doublestar for include and exclude paths. (This was the default before 0.7.0)"
},
"continue_on_error": {
"type": "boolean",
"default": false,
"description": "Continue formatting and don't exit with code 1 when there is an invalid yaml file found."
},
"include": {
"type": "array",
"items": {
"type": "string"
},
"default": [],
"description": "The paths for the command to include for formatting. See Specifying Paths for more details."
},
"exclude": {
"type": "array",
"items": {
"type": "string"
},
"default": [],
"description": "The paths for the command to exclude from formatting. See Specifying Paths for more details."
},
"gitignore_excludes": {
"type": "boolean",
"default": false,
"description": "Use gitignore files for exclude paths. This is in addition to the patterns from the exclude option."
},
"gitignore_path": {
"type": "string",
"default": ".gitignore",
"description": "The path to the gitignore file to use."
},
"regex_exclude": {
"type": "array",
"items": {
"type": "string"
},
"default": [],
"description": "Regex patterns to match file contents for, if the file content matches the regex the file will be excluded. Use Go regexes."
},
"extensions": {
"type": "array",
"items": {
"type": "string"
},
"default": [],
"description": "The extensions to use for standard mode path collection. See Specifying Paths for more details."
},
"formatter": {
"type": "object",
"default": {
"type": "basic"
},
"description": "Formatter settings. See Formatter for more details.",
"properties": {
"type": {
"type": "string",
"default": "basic"
}
}
},
"output_format": {
"type": "string",
"enum": [
"default",
"line"
],
"default": "default",
"description": "The output format to use. See Output docs for more details."
}
},
"additionalProperties": false
}