Last change
on this file was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago |
initial commit
|
-
Property mode
set to
100644
|
File size:
1.1 KB
|
Line | |
---|
1 | {
|
---|
2 | "$schema": "http://json-schema.org/draft-07/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": "One or more named builder configurations as a comma-separated list as specified in the \"configurations\" section of angular.json.\nThe builder uses the named configurations to run the given target.\nFor more information, see https://angular.io/guide/workspace-config#alternate-build-configurations.",
|
---|
26 | "type": "string",
|
---|
27 | "aliases": ["c"]
|
---|
28 | }
|
---|
29 | },
|
---|
30 | "required": []
|
---|
31 | },
|
---|
32 | {
|
---|
33 | "$ref": "./definitions.json#/definitions/base"
|
---|
34 | }
|
---|
35 | ]
|
---|
36 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.