File tree Expand file tree Collapse file tree 1 file changed +22
-0
lines changed Expand file tree Collapse file tree 1 file changed +22
-0
lines changed Original file line number Diff line number Diff line change 1
1
## Table of contents
2
+ * [ Progress reporting] ( #progress-reporting )
2
3
* [ Printing Full and Summary Reports] ( #printing-full-and-summary-reports )
3
4
* Other Report Types
4
5
* [ Checkstyle] ( #printing-a-checkstyle-report )
23
24
24
25
***
25
26
27
+ ## Progress reporting
28
+
29
+ To see progress reporting while scanning a code base, use the ` -p ` command line argument.
30
+
31
+ Legend for the progress indicators:
32
+
33
+ | When scanning with | Indicator | Means: |
34
+ | ------------------ | ------------ | --------------------------------------------------------- |
35
+ | ` phpcs ` /` phpcbf ` | ` S ` | Skipped file |
36
+ | ` phpcs ` | ` E ` (red) | Non-fixable errors found in the file |
37
+ | | ` E ` (green) | Fixable errors found in the file |
38
+ | | ` W ` (yellow) | Non-fixable warnings found in the file |
39
+ | | ` W ` (green) | Fixable warnings found in the file |
40
+ | | ` . ` | No errors or warnings found in the file |
41
+ | ` phpcbf ` | ` F ` (green) | Fixed errors or warnings in the file |
42
+ | | ` E ` (red) | Unfixable errors or warnings in the file (fixer conflict) |
43
+ | | ` . ` | No errors or warnings found in the file |
44
+
45
+ <p align =" right " ><a href =" #table-of-contents " >back to top</a ></p >
46
+
47
+
26
48
## Printing Full and Summary Reports
27
49
When running a scan, by default, the full report is displayed.
28
50
You can’t perform that action at this time.
0 commit comments