123456789101112131415161718192021222324252627282930313233 |
- {
- "$schema": "http://json-schema.org/schema",
- "$id": "sidebar-nav",
- "title": "Sidebar Navigation Layout",
- "type": "object",
- "properties": {
- "project": {
- "type": "string",
- "description": "The name of the project.",
- "$default": {
- "$source": "projectName"
- }
- },
- "style": {
- "description": "The file extension or preprocessor to use for style files.",
- "type": "string",
- "default": "css",
- "enum": [
- "css",
- "scss",
- "sass",
- "less"
- ]
- },
- "prefix": {
- "type": "string",
- "format": "html-selector",
- "description": "A prefix to apply to generated selectors.",
- "default": "app",
- "alias": "p"
- }
- }
- }
|