-
Notifications
You must be signed in to change notification settings - Fork 3
/
schema-file-filter-config.json
105 lines (105 loc) · 3.49 KB
/
schema-file-filter-config.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
94
95
96
97
98
99
100
101
102
103
104
105
{
"$schema": "https://json-schema.org/draft-07/schema",
"title": "mkdocs-file-filter-plugin config schema",
"type": "object",
"properties": {
"enabled": {
"title": "Enable plugin",
"markdownDescription": "https://github.com/DariuszPorowski/mkdocs-file-filter-plugin/blob/main/README.md#usage",
"type": "boolean",
"default": true
},
"enabled_on_serve": {
"title": "Enable on serve",
"markdownDescription": "https://github.com/DariuszPorowski/mkdocs-file-filter-plugin/blob/main/README.md#usage",
"type": "boolean",
"default": true
},
"only_doc_pages": {
"title": "Filter only documentation pages",
"markdownDescription": "https://github.com/DariuszPorowski/mkdocs-file-filter-plugin/blob/main/README.md#usage",
"type": "boolean",
"default": false
},
"filter_nav": {
"title": "Remove navigation items based on excludes",
"markdownDescription": "https://github.com/DariuszPorowski/mkdocs-file-filter-plugin/blob/main/README.md#usage",
"type": "boolean",
"default": true
},
"metadata_property": {
"title": "Metadata property name for Tags",
"markdownDescription": "https://github.com/DariuszPorowski/mkdocs-file-filter-plugin/blob/main/README.md#usage",
"type": "string",
"default": "tags"
},
"mkdocsignore": {
"title": "Enable .mkdocsignore support",
"markdownDescription": "https://github.com/DariuszPorowski/mkdocs-file-filter-plugin/blob/main/README.md#usage",
"type": "boolean",
"default": false
},
"mkdocsignore_file": {
"title": ".mkdocsignore file path",
"markdownDescription": "https://github.com/DariuszPorowski/mkdocs-file-filter-plugin/blob/main/README.md#usage",
"type": "string",
"default": ".mkdocsignore",
"format": "path"
},
"exclude_glob": {
"title": "Globs to exclude",
"markdownDescription": "https://github.com/DariuszPorowski/mkdocs-file-filter-plugin/blob/main/README.md#usage",
"type": "array",
"items": {
"type": "string"
},
"default": []
},
"exclude_regex": {
"title": "Regexes to exclude",
"markdownDescription": "https://github.com/DariuszPorowski/mkdocs-file-filter-plugin/blob/main/README.md#usage",
"type": "array",
"items": {
"type": "string"
},
"default": []
},
"exclude_tag": {
"title": "Tags to exclude",
"markdownDescription": "https://github.com/DariuszPorowski/mkdocs-file-filter-plugin/blob/main/README.md#usage",
"type": "array",
"items": {
"type": "string"
},
"default": []
},
"include_glob": {
"title": "Globs to include",
"markdownDescription": "https://github.com/DariuszPorowski/mkdocs-file-filter-plugin/blob/main/README.md#usage",
"type": "array",
"items": {
"type": "string"
},
"default": []
},
"include_regex": {
"title": "Regexes to include",
"markdownDescription": "https://github.com/DariuszPorowski/mkdocs-file-filter-plugin/blob/main/README.md#usage",
"type": "array",
"items": {
"type": "string"
},
"default": []
},
"include_tag": {
"title": "Tags to include",
"markdownDescription": "https://github.com/DariuszPorowski/mkdocs-file-filter-plugin/blob/main/README.md#usage",
"type": "array",
"items": {
"type": "string"
},
"default": []
}
},
"additionalProperties": false
}