source: trip-planner-front/node_modules/@angular/cli/commands/lint.d.ts@ 6c1585f

Last change on this file since 6c1585f was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago

initial commit

  • Property mode set to 100644
File size: 848 bytes
Line 
1/**
2 * Runs linting tools on Angular app code in a given project folder.
3 */
4export interface Schema {
5 /**
6 * One or more named builder configurations as a comma-separated list as specified in the
7 * "configurations" section of angular.json.
8 * The builder uses the named configurations to run the given target.
9 * For more information, see
10 * https://angular.io/guide/workspace-config#alternate-build-configurations.
11 */
12 configuration?: string;
13 /**
14 * Shows a help message for this command in the console.
15 */
16 help?: HelpUnion;
17 /**
18 * The name of the project to lint.
19 */
20 project?: string;
21}
22/**
23 * Shows a help message for this command in the console.
24 */
25export declare type HelpUnion = boolean | HelpEnum;
26export declare enum HelpEnum {
27 HelpJson = "JSON",
28 Json = "json"
29}
Note: See TracBrowser for help on using the repository browser.