nx/packages/linter/executors.json
2022-03-25 17:03:16 -04:00

28 lines
979 B
JSON

{
"builders": {
"lint": {
"implementation": "./src/executors/lint/compat",
"schema": "./src/executors/lint/schema.json",
"description": "**[DEPRECATED]**: Please use the eslint builder instead, an automated migration was provided in `v10.3.0`."
},
"eslint": {
"implementation": "./src/executors/eslint/compat",
"schema": "./src/executors/eslint/schema.json",
"description": "Run ESLint on a project."
}
},
"executors": {
"lint": {
"implementation": "./src/executors/lint/lint.impl",
"schema": "./src/executors/lint/schema.json",
"description": "**[DEPRECATED]**: Please use the eslint builder instead, an automated migration was provided in `v10.3.0`."
},
"eslint": {
"implementation": "./src/executors/eslint/lint.impl",
"schema": "./src/executors/eslint/schema.json",
"hasher": "./src/executors/eslint/hasher",
"description": "Run ESLint on a project."
}
}
}