MCPcopy
hub / github.com/eslint/eslint / Stats

Interface Stats

lib/types/index.d.ts:1116–1126  ·  view source on GitHub ↗

* Performance statistics.

Source from the content-addressed store, hash-verified

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 /**

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…