From 7394ab63bf4d3e536c69220578952b40f48f003b Mon Sep 17 00:00:00 2001 From: Janis Hutz Date: Tue, 10 Jun 2025 17:23:43 +0200 Subject: [PATCH] [Eslint] Change a few options --- config/lint/eslint.config.mjs | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/config/lint/eslint.config.mjs b/config/lint/eslint.config.mjs index 8326f39..af2542a 100644 --- a/config/lint/eslint.config.mjs +++ b/config/lint/eslint.config.mjs @@ -111,10 +111,7 @@ const style = { 'error', 'always' ], - '@stylistic/newline-per-chained-call': [ - 'error', - { 'ignoreChainWithDepth': 2 } - ], + '@stylistic/newline-per-chained-call': [ 'error' ], '@stylistic/no-extra-parens': [ 'error', 'all', @@ -590,7 +587,9 @@ const style = { ], '@stylistic/space-infix-ops': [ 'error', - { 'int32Hint': false } + { + 'int32Hint': false + } ], '@stylistic/space-unary-ops': 'error', '@stylistic/spaced-comment': [ @@ -625,7 +624,9 @@ export default tseslint.config( 'sourceType': 'module', 'ecmaVersion': 'latest', 'globals': globals.browser, - 'parserOptions': { 'parser': tseslint.parser, }, + 'parserOptions': { + 'parser': tseslint.parser, + }, }, 'plugins': { 'vue': vue,