diff options
author | Florian Dold <florian.dold@gmail.com> | 2017-08-14 05:01:11 +0200 |
---|---|---|
committer | Florian Dold <florian.dold@gmail.com> | 2017-08-14 05:02:09 +0200 |
commit | 363723fc84f7b8477592e0105aeb331ec9a017af (patch) | |
tree | 29f92724f34131bac64d6a318dd7e30612e631c7 /node_modules/tslint/lib/configs/all.d.ts | |
parent | 5634e77ad96bfe1818f6b6ee70b7379652e5487f (diff) |
node_modules
Diffstat (limited to 'node_modules/tslint/lib/configs/all.d.ts')
-rw-r--r-- | node_modules/tslint/lib/configs/all.d.ts | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/node_modules/tslint/lib/configs/all.d.ts b/node_modules/tslint/lib/configs/all.d.ts index 583a2d296..5a04decf4 100644 --- a/node_modules/tslint/lib/configs/all.d.ts +++ b/node_modules/tslint/lib/configs/all.d.ts @@ -17,6 +17,7 @@ export declare const rules: { "no-namespace": boolean; "no-non-null-assertion": boolean; "no-reference": boolean; + "no-this-assignment": boolean; "no-var-requires": boolean; "only-arrow-functions": boolean; "prefer-for-of": boolean; @@ -41,7 +42,7 @@ export declare const rules: { "no-construct": boolean; "no-debugger": boolean; "no-duplicate-super": boolean; - "no-duplicate-variable": boolean; + "no-duplicate-variable": (string | boolean)[]; "no-empty": boolean; "no-eval": boolean; "no-floating-promises": boolean; @@ -55,6 +56,7 @@ export declare const rules: { "no-string-literal": boolean; "no-string-throw": boolean; "no-sparse-arrays": boolean; + "no-submodule-imports": boolean; "no-unbound-method": boolean; "no-unsafe-any": boolean; "no-unsafe-finally": boolean; @@ -70,6 +72,7 @@ export declare const rules: { "strict-type-predicates": boolean; "switch-default": boolean; "triple-equals": boolean; + "use-default-type-parameter": boolean; "use-isnan": boolean; "cyclomatic-complexity": boolean; "eofline": boolean; @@ -79,6 +82,7 @@ export declare const rules: { "max-file-line-count": (number | boolean)[]; "max-line-length": (number | boolean)[]; "no-default-export": boolean; + "no-duplicate-imports": boolean; "no-irregular-whitespace": boolean; "no-mergeable-namespace": boolean; "no-require-imports": boolean; @@ -93,6 +97,7 @@ export declare const rules: { "array-type": (string | boolean)[]; "arrow-parens": boolean; "arrow-return-shorthand": (string | boolean)[]; + "binary-expression-operand-order": boolean; "callable-types": boolean; "class-name": boolean; "comment-format": (string | boolean)[]; @@ -139,6 +144,9 @@ export declare const rules: { "method": string; "named": string; })[]; + "space-within-parens": (number | boolean)[]; + "switch-final-break": boolean; + "type-literal-delimiter": boolean; "variable-name": (string | boolean)[]; "whitespace": (string | boolean)[]; }; |