Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

Metrics

import type { Metrics } from "https://aws-api.deno.dev/v0.4/services/codegurureviewer.ts?docs=full";

Information about the statistics from the code review.

interface Metrics {
FindingsCount?: number | null;
MeteredLinesOfCodeCount?: number | null;
SuppressedLinesOfCodeCount?: number | null;
}

§Properties

§
FindingsCount?: number | null
[src]

Total number of recommendations found in the code review.

§
MeteredLinesOfCodeCount?: number | null
[src]

MeteredLinesOfCodeCount is the number of lines of code in the repository where the code review happened. This does not include non-code lines such as comments and blank lines.

§
SuppressedLinesOfCodeCount?: number | null
[src]

SuppressedLinesOfCodeCount is the number of lines of code in the repository where the code review happened that CodeGuru Reviewer did not analyze. The lines suppressed in the analysis is based on the excludeFiles variable in the aws-codeguru-reviewer.yml file. This number does not include non-code lines such as comments and blank lines.