@angular-eslint/schematics
Version:
Angular Schematics for angular-eslint
23 lines (22 loc) • 624 B
JSON
{
"$schema": "http://json-schema.org/schema",
"$id": "add-eslint-to-project",
"title": "Add ESLint to an Angular CLI project",
"type": "object",
"properties": {
"project": {
"description": "The name of the project to add ESLint to.",
"type": "string",
"$default": {
"$source": "argv",
"index": 0
}
},
"setParserOptionsProject": {
"type": "boolean",
"description": "Whether or not to configure the ESLint `parserOptions.project` option. We do not do this by default for lint performance reasons.",
"default": false
}
},
"required": []
}