options.d.ts 639 B

1234567891011121314151617181920
  1. /**
  2. * @license
  3. * Copyright Google Inc. All Rights Reserved.
  4. *
  5. * Use of this source code is governed by an MIT-style license that can be
  6. * found in the LICENSE file at https://angular.io/license
  7. */
  8. import { JsonObject } from '@angular-devkit/core';
  9. export declare const TslintFixName = "tslint-fix";
  10. export interface TslintFixTaskOptionsBase {
  11. silent?: boolean;
  12. format?: string;
  13. tsConfigPath?: string;
  14. ignoreErrors?: boolean;
  15. includes?: string | string[];
  16. files?: string | string[];
  17. tslintPath?: string;
  18. tslintConfig?: JsonObject;
  19. }
  20. export declare type TslintFixTaskOptions = TslintFixTaskOptionsBase;