aboutsummaryrefslogtreecommitdiff
path: root/node_modules/tslint/lib/configs/all.d.ts
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2017-12-10 21:51:33 +0100
committerFlorian Dold <florian.dold@gmail.com>2017-12-10 21:51:33 +0100
commit0469abd4a9c9270a1fdc962969e36e63699af8b4 (patch)
treef9864d4a4148621378958794cbbfdc2393733283 /node_modules/tslint/lib/configs/all.d.ts
parent6947e79bbc258f7bc96af424ddb71a511f0c15a3 (diff)
upgrade dependencies
Diffstat (limited to 'node_modules/tslint/lib/configs/all.d.ts')
-rw-r--r--node_modules/tslint/lib/configs/all.d.ts9
1 files changed, 8 insertions, 1 deletions
diff --git a/node_modules/tslint/lib/configs/all.d.ts b/node_modules/tslint/lib/configs/all.d.ts
index cb04d518a..6c285be54 100644
--- a/node_modules/tslint/lib/configs/all.d.ts
+++ b/node_modules/tslint/lib/configs/all.d.ts
@@ -32,6 +32,7 @@ export declare const rules: {
})[];
"unified-signatures": boolean;
"await-promise": boolean;
+ "ban-comma-operator": boolean;
"curly": boolean;
"forin": boolean;
"label-position": boolean;
@@ -42,22 +43,26 @@ export declare const rules: {
"no-construct": boolean;
"no-debugger": boolean;
"no-duplicate-super": boolean;
+ "no-duplicate-switch-case": boolean;
"no-duplicate-variable": (string | boolean)[];
"no-empty": boolean;
"no-eval": boolean;
"no-floating-promises": boolean;
"no-for-in-array": boolean;
+ "no-implicit-dependencies": boolean;
"no-inferred-empty-object-type": boolean;
"no-invalid-template-strings": boolean;
"no-misused-new": boolean;
"no-null-keyword": boolean;
"no-object-literal-type-assertion": boolean;
+ "no-return-await": boolean;
"no-shadowed-variable": boolean;
"no-string-literal": boolean;
"no-string-throw": boolean;
"no-sparse-arrays": boolean;
"no-submodule-imports": boolean;
"no-unbound-method": boolean;
+ "no-unnecessary-class": (string | boolean)[];
"no-unsafe-any": boolean;
"no-unsafe-finally": boolean;
"no-unused-expression": boolean;
@@ -108,7 +113,7 @@ export declare const rules: {
"import-spacing": boolean;
"interface-name": boolean;
"interface-over-type-literal": boolean;
- "jsdoc-format": boolean;
+ "jsdoc-format": (string | boolean)[];
"match-default-export-name": boolean;
"new-parens": boolean;
"newline-before-return": boolean;
@@ -116,6 +121,7 @@ export declare const rules: {
"no-boolean-literal-compare": boolean;
"no-consecutive-blank-lines": boolean;
"no-parameter-properties": boolean;
+ "no-redundant-jsdoc": boolean;
"no-reference-import": boolean;
"no-unnecessary-callback-wrapper": boolean;
"no-unnecessary-initializer": boolean;
@@ -129,6 +135,7 @@ export declare const rules: {
"ordered-imports": (boolean | {
"import-sources-order": string;
"named-imports-order": string;
+ "module-source-path": string;
})[];
"prefer-function-over-method": boolean;
"prefer-method-signature": boolean;