lint.d.ts 558 B

12345678910111213141516171819202122232425
  1. /**
  2. * Runs linting tools on Angular app code in a given project folder.
  3. */
  4. export interface Schema {
  5. /**
  6. * The linting configuration to use.
  7. */
  8. configuration?: string;
  9. /**
  10. * Shows a help message for this command in the console.
  11. */
  12. help?: HelpUnion;
  13. /**
  14. * The name of the project to lint.
  15. */
  16. project?: string;
  17. }
  18. /**
  19. * Shows a help message for this command in the console.
  20. */
  21. export declare type HelpUnion = boolean | HelpEnum;
  22. export declare enum HelpEnum {
  23. HelpJson = "JSON",
  24. Json = "json"
  25. }