Skip to content

Commit 4f9fd9f

Browse files
maxime1992clydin
authored andcommitted
fix(@angular/cli): support codeFrame format with ng lint
1 parent 46d0ca5 commit 4f9fd9f

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

docs/documentation/1-x/lint.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,6 @@
4242
<code>--format</code> (aliases: <code>-t</code>) <em>default value: prose</em>
4343
</p>
4444
<p>
45-
Output format (prose, json, stylish, verbose, pmd, msbuild, checkstyle, vso, fileslist).
45+
Output format (prose, json, stylish, verbose, pmd, msbuild, checkstyle, vso, fileslist, codeFrame).
4646
</p>
4747
</details>

docs/documentation/lint.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,6 @@ ng lint [project]
7070
<code>--format</code>
7171
</p>
7272
<p>
73-
Output format (prose, json, stylish, verbose, pmd, msbuild, checkstyle, vso, fileslist).
73+
Output format (prose, json, stylish, verbose, pmd, msbuild, checkstyle, vso, fileslist, codeFrame).
7474
</p>
7575
</details>

packages/@angular/cli/lib/config/schema.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1566,7 +1566,7 @@
15661566
},
15671567
"format": {
15681568
"type": "string",
1569-
"description": "Output format (prose, json, stylish, verbose, pmd, msbuild, checkstyle, vso, fileslist).",
1569+
"description": "Output format (prose, json, stylish, verbose, pmd, msbuild, checkstyle, vso, fileslist, codeFrame).",
15701570
"default": "prose",
15711571
"enum": [
15721572
"prose",
@@ -1577,7 +1577,8 @@
15771577
"msbuild",
15781578
"checkstyle",
15791579
"vso",
1580-
"fileslist"
1580+
"fileslist",
1581+
"codeFrame"
15811582
]
15821583
},
15831584
"exclude": {

0 commit comments

Comments
 (0)