{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://catalog.lintel.tools/schemas/schemastore/grunt-clean-task/latest.json",
  "title": "JSON schema for the Grunt clean task",
  "x-lintel": {
    "source": "https://www.schemastore.org/grunt-clean-task.json",
    "sourceSha256": "26738ff9a6eb3f321357901a82e6eb8f297bd1f76b6f18dcb7b8e37f1cd7d428",
    "fileMatch": [
      "clean.json"
    ],
    "parsers": [
      "json"
    ]
  },
  "type": "object",
  "properties": {
    "options": {
      "$ref": "#/$defs/options"
    }
  },
  "id": "https://json.schemastore.org/grunt-clean-task.json",
  "$defs": {
    "options": {
      "description": "Set the options for grunt-contrib-copy",
      "type": "object",
      "properties": {
        "force": {
          "description": "This overrides this task from blocking deletion of folders outside current working dir (CWD). Use with caution.",
          "type": "boolean",
          "default": false
        },
        "no-write": {
          "description": "Will log messages of what would happen if the task was ran but doesn't actually delete the files.",
          "type": "boolean",
          "default": false
        }
      }
    }
  },
  "additionalProperties": {
    "anyOf": [
      {
        "$ref": "https://catalog.lintel.tools/schemas/schemastore/grunt-clean-task/_shared/latest--grunt-task.json#/$defs/fileFormat"
      },
      {
        "$ref": "https://catalog.lintel.tools/schemas/schemastore/grunt-clean-task/_shared/latest--grunt-task.json#/$defs/dynamic"
      },
      {
        "type": "object",
        "properties": {
          "options": {
            "$ref": "#/$defs/options"
          }
        }
      },
      {
        "type": "array",
        "items": {
          "type": "string"
        }
      }
    ]
  }
}
