From 07e404cb4ef677fea470d11f2dbd6a971b364fdd Mon Sep 17 00:00:00 2001 From: Arturo Manzoli Date: Fri, 9 Aug 2024 15:42:32 -0700 Subject: [PATCH] update eslint rules Signed-off-by: Arturo Manzoli --- .eslintrc.cjs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.eslintrc.cjs b/.eslintrc.cjs index 9fd9dfa35..99b20529a 100644 --- a/.eslintrc.cjs +++ b/.eslintrc.cjs @@ -40,7 +40,7 @@ module.exports = { 'jsdoc/newline-after-description': 'off', 'jsdoc/no-undefined-types': 'off', 'jsdoc/require-returns': ['error', { forceReturnsWithAsync: false }], - 'max-len': ['error', { code: 120, ignoreUrls: true, ignoreComments: true }], + 'max-len': ['error', { code: 180, ignoreUrls: true, ignoreComments: true }], 'no-alert': 'off', 'no-console': 'off', 'no-continue': 'off', @@ -92,10 +92,10 @@ module.exports = { 'vue/max-len': [ 'error', { - code: 120, - template: 120, + code: 180, + template: 180, tabWidth: 4, - comments: 160, + comments: 180, ignoreComments: true, ignoreTrailingComments: true, ignoreHTMLAttributeValues: true,