From 1035ff81b326fa9f56ccf14103e682c6a2c799be Mon Sep 17 00:00:00 2001 From: "James E. Blair" Date: Fri, 20 Nov 2020 06:26:36 -0800 Subject: [PATCH] Don't enforce js whitespace In the Zuul project in general we try to avoid having nitpicky arguments about code style. Unless it causes a real problem, we usually accept the stylistic aspects of code as people write it. Since js indentation is not functional, like python, let's ignore it. Change-Id: If787e9a9fee92bdca1c4add448a5c85f02d4118d --- web/.eslintrc | 2 -- 1 file changed, 2 deletions(-) diff --git a/web/.eslintrc b/web/.eslintrc index 6576313e70..4527f2e9f2 100644 --- a/web/.eslintrc +++ b/web/.eslintrc @@ -3,8 +3,6 @@ plugins: - standard - jest rules: - # SwitchCase value is a multiplicator of configured indentation value (2) - indent: ["error", 2, {"SwitchCase": 1}] no-var: error no-console: off semi: [error, never]