{
  "$schema": "http://json-schema.org/schema",
  "cli": "nx",
  "$id": "EslintPlugin",
  "title": "",
  "type": "object",
  "properties": {
    "pluginName": {
      "type": "string",
      "description": "eslint-plugin name",
      "$default": {
        "$source": "argv",
        "index": 0
      },
      "x-prompt": "What name would you like to use?"
    },
    "tags": {
      "type": "string",
      "description": "Add tags to the project (used for linting)",
      "alias": "t"
    },
    "directory": {
      "type": "string",
      "description": "A directory where the project is placed"
    },
    "jestPreset": {
      "type": "string",
      "description": "Path to jest preset configuration"
    },
    "rootEslintConfig": {
      "type": "string",
      "description": "Path to root eslint configuration"
    },
    "baseTsConfig": {
      "type": "string",
      "description": "Path to base TypeScript configuration"
    },
    "skipDependencies": {
      "description": "Skip initializing dependencies",
      "type": "boolean",
      "default": false
    },
    "skipFormat": {
      "description": "Skip formatting files.",
      "type": "boolean",
      "default": false
    }
  },
  "required": ["pluginName"]
}
