interface LinterQuery {
    rules?: (
        | "deprecated-functions"
        | "file-path-validity"
        | ConfiguredLintingRule<"deprecated-functions" | "file-path-validity">
    )[];
    type: "linter";
}

Hierarchy (View Summary)

Hierarchy-Diagram

UML class diagram of LinterQuery

Properties

Properties

rules?: (
    | "deprecated-functions"
    | "file-path-validity"
    | ConfiguredLintingRule<"deprecated-functions" | "file-path-validity">
)[]

The rules to lint for. If unset, all rules will be included. Optionally, a ConfiguredLintingRule can be provided, which additionally includes custom user-supplied values for the linting rules' configurations.

type: "linter"

used to select the query type :)