* feat(linter): new eslint builder * chore(linter): move migration to linter, add implementation Co-authored-by: Jason Jean <jasonjean1993@gmail.com>
16 lines
528 B
JSON
16 lines
528 B
JSON
{
|
|
"$schema": "@angular-devkit/architect/src/builders-schema.json",
|
|
"builders": {
|
|
"lint": {
|
|
"implementation": "./src/builders/lint/lint.impl",
|
|
"schema": "./src/builders/lint/schema.json",
|
|
"description": "**[DEPRECATED]**: Please use the eslint builder instead, an automated migration was provided in v10.3.0"
|
|
},
|
|
"eslint": {
|
|
"implementation": "./src/builders/eslint/lint.impl",
|
|
"schema": "./src/builders/eslint/schema.json",
|
|
"description": "Run ESLint on a project"
|
|
}
|
|
}
|
|
}
|