From 324ba44f51aea519b7ea1ebd6a6f0d6d8a40322c Mon Sep 17 00:00:00 2001 From: Joe Date: Fri, 4 Sep 2020 14:27:59 -0500 Subject: [PATCH] double max line length for code as well as comments --- .eslintrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.eslintrc b/.eslintrc index e96a8d8..828a002 100644 --- a/.eslintrc +++ b/.eslintrc @@ -14,7 +14,7 @@ "no-useless-return": "warn", "no-var": "warn", "no-console": "off", - "max-len": ["warn", { "comments": 160 }], + "max-len": ["warn", { "code": 160, "comments": 160 }], "no-param-reassign": 0, "require-atomic-updates": 0, "@typescript-eslint/interface-name-prefix": "off",