From f00b21908ff5ad6bfa9ec99c682b36740db8d43a Mon Sep 17 00:00:00 2001 From: Mykola Morhun Date: Fri, 8 Oct 2021 12:02:11 +0300 Subject: [PATCH] change eslint enabled rules (#1752) Signed-off-by: Mykola Morhun --- configs/disabled.rules.json | 2 ++ src/api/kube.ts | 3 --- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/configs/disabled.rules.json b/configs/disabled.rules.json index 746177bec..8296c90e0 100644 --- a/configs/disabled.rules.json +++ b/configs/disabled.rules.json @@ -26,6 +26,8 @@ "no-else-return": 0, "no-useless-return": 0, "no-case-declarations": 0, + "lines-between-class-members": 0, + "max-params": 0, "complexity": 0 } } diff --git a/src/api/kube.ts b/src/api/kube.ts index 3335079b0..07fa0fa43 100644 --- a/src/api/kube.ts +++ b/src/api/kube.ts @@ -38,11 +38,8 @@ export class KubeHelper { readonly API_EXTENSIONS_V1BETA1 = 'apiextensions.k8s.io/v1beta1' podWaitTimeout: number - podDownloadImageTimeout: number - podReadyTimeout: number - podErrorRecheckTimeout: number constructor(flags?: any) {