This repository has been archived by the owner. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathoptions-schema.json
More file actions
executable file
·49 lines (49 loc) · 1.39 KB
/
options-schema.json
File metadata and controls
executable file
·49 lines (49 loc) · 1.39 KB
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
{
"type": "object",
"properties": {
"filters": {
"description": "Path to file with custom filters.",
"type": "string"
},
"extensions": {
"description": "Path to file with extensions.",
"type": "string"
},
"globals": {
"description": "Path to file with globals.",
"type": "string"
},
"config": {
"type": "object",
"properties": {
"autoescape": {
"type": "boolean",
"description": "Controls if output with dangerous characters are escaped automatically"
},
"throwOnUndefined": {
"type": "boolean",
"description": "Throw errors when outputting a null/undefined value"
},
"trimBlocks": {
"type": "boolean",
"description": "Automatically remove trailing newlines from a block/tag"
},
"lstripBlocks": {
"type": "boolean",
"description": "Automatically remove leading whitespace from a block/tag"
},
"tags": {
"type": "object",
"properties": {
"blockStart": { "type": "string" },
"blockEnd": { "type": "string" },
"variableStart": { "type": "string" },
"variableEnd": { "type": "string" },
"commentStart": { "type": "string" },
"commentEnd": { "type": "string" }
}
}
}
}
}
}