Last change
on this file since ceaed42 was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago |
initial commit
|
-
Property mode
set to
100644
|
File size:
988 bytes
|
Line | |
---|
1 | /**
|
---|
2 | * TSlint target options for Build Facade.
|
---|
3 | */
|
---|
4 | export interface Schema {
|
---|
5 | /**
|
---|
6 | * Files to exclude from linting.
|
---|
7 | */
|
---|
8 | exclude?: string[];
|
---|
9 | /**
|
---|
10 | * Files to include in linting.
|
---|
11 | */
|
---|
12 | files?: string[];
|
---|
13 | /**
|
---|
14 | * Fixes linting errors (may overwrite linted files).
|
---|
15 | */
|
---|
16 | fix?: boolean;
|
---|
17 | /**
|
---|
18 | * Succeeds even if there was linting errors.
|
---|
19 | */
|
---|
20 | force?: boolean;
|
---|
21 | /**
|
---|
22 | * Output format (prose, json, stylish, verbose, pmd, msbuild, checkstyle, vso, fileslist).
|
---|
23 | */
|
---|
24 | format?: string;
|
---|
25 | /**
|
---|
26 | * Show output text.
|
---|
27 | */
|
---|
28 | silent?: boolean;
|
---|
29 | /**
|
---|
30 | * The name of the TypeScript configuration file.
|
---|
31 | */
|
---|
32 | tsConfig?: TsConfig;
|
---|
33 | /**
|
---|
34 | * The name of the TSLint configuration file.
|
---|
35 | */
|
---|
36 | tslintConfig?: string;
|
---|
37 | /**
|
---|
38 | * Controls the type check for linting.
|
---|
39 | */
|
---|
40 | typeCheck?: boolean;
|
---|
41 | }
|
---|
42 | /**
|
---|
43 | * The name of the TypeScript configuration file.
|
---|
44 | */
|
---|
45 | export declare type TsConfig = string[] | string;
|
---|
Note:
See
TracBrowser
for help on using the repository browser.