From 5c7f2f6a1eb90b5bead8d566988c20bcadfddb0a Mon Sep 17 00:00:00 2001 From: Dinmukhamed Mailibay <47117969+dinmukhamedm@users.noreply.github.com> Date: Sat, 12 Oct 2024 21:17:09 -0700 Subject: [PATCH] fix: only warn on lines too long (#37) --- frontend/.eslintrc.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/.eslintrc.json b/frontend/.eslintrc.json index 33c3ccbf..61d1c209 100644 --- a/frontend/.eslintrc.json +++ b/frontend/.eslintrc.json @@ -3,7 +3,7 @@ "rules": { "indent": ["error", 2], "eol-last": ["error", "always"], - "max-len": ["error", { "code": 120, "ignoreUrls": true, "ignoreStrings": true, "ignoreTemplateLiterals": true }], + "max-len": ["warn", { "code": 120, "ignoreUrls": true, "ignoreStrings": true, "ignoreTemplateLiterals": true }], "semi": ["error", "always"], "no-trailing-spaces": ["error"], "arrow-body-style": ["warn", "as-needed"]