@nx-plugins/linter
Version:
The Nx Plugin for Linter that contains executors, generators, and utilities to use powerful Eslint capabilities.
40 lines (39 loc) • 1.1 kB
JSON
{
"$schema": "http://json-schema.org/schema",
"cli": "nx",
"$id": "EslintVue",
"title": "",
"type": "object",
"properties": {
"project": {
"type": "string",
"description": "The name of the project.",
"alias": "p",
"$default": {
"$source": "projectName"
},
"x-prompt": "What is the name of the project?"
},
"unitTestRunner": {
"type": "string",
"enum": ["vitest", "jest","none"],
"description": "Test runner to use for unit tests",
"default": "vitest"
},
"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
},
"skipFormat": {
"description": "Skip formatting files.",
"type": "boolean",
"default": false
},
"skipPackageJson": {
"type": "boolean",
"description": "Do not add dependencies to package.json"
}
},
"required": []
}