From 3ce114a4cda2df3ce457651d2e503fd9f8a8f214 Mon Sep 17 00:00:00 2001 From: Liam Gray Date: Wed, 22 Nov 2023 16:23:43 -0800 Subject: [PATCH] feat(eslint): increase max line length --- .eslintrc.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.eslintrc.json b/.eslintrc.json index 703975a..8166192 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -5,5 +5,8 @@ }, "env": { "es6": true + }, + "rules": { + "max-len": [1, {"code": 120}] } }