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

NonCompliantFile

import type { NonCompliantFile } from "https://googleapis.deno.dev/v1/containeranalysis:v1.ts";

Details about files that caused a compliance check to fail. display_command is a single command that can be used to display a list of non compliant files. When there is no such command, we can also iterate a list of non compliant file using 'path'.

interface NonCompliantFile {
displayCommand?: string;
path?: string;
reason?: string;
}

§Properties

§
displayCommand?: string
[src]

Command to display the non-compliant files.

§
path?: string
[src]

Empty if display_command is set.

§
reason?: string
[src]

Explains why a file is non compliant for a CIS check.