* Performance statistics.
| 1114 | * Performance statistics. |
| 1115 | */ |
| 1116 | interface Stats { |
| 1117 | /** |
| 1118 | * The number of times ESLint has applied at least one fix after linting. |
| 1119 | */ |
| 1120 | fixPasses: number; |
| 1121 | |
| 1122 | /** |
| 1123 | * The times spent on (parsing, fixing, linting) a file, where the linting refers to the timing information for each rule. |
| 1124 | */ |
| 1125 | times: { passes: TimePass[] }; |
| 1126 | } |
| 1127 | |
| 1128 | interface TimePass { |
| 1129 | /** |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…