UNPKG

884 BJSONView Raw
1{
2 "$schema": "http://json-schema.org/schema",
3 "$id": "ng-cli://commands/lint.json",
4 "description": "Runs linting tools on Angular app code in a given project folder.",
5 "$longDescription": "./lint-long.md",
6
7 "$aliases": [ "l" ],
8 "$scope": "in",
9 "$type": "architect",
10 "$impl": "./lint-impl#LintCommand",
11
12 "type": "object",
13 "allOf": [
14 {
15 "properties": {
16 "project": {
17 "type": "string",
18 "description": "The name of the project to lint.",
19 "$default": {
20 "$source": "argv",
21 "index": 0
22 }
23 },
24 "configuration": {
25 "description": "The linting configuration to use.",
26 "type": "string",
27 "aliases": [
28 "c"
29 ]
30 }
31 },
32 "required": [
33 ]
34 },
35 {
36 "$ref": "./definitions.json#/definitions/base"
37 }
38 ]
39}