From 3fbd52372167b213f0c85331d21c480521b0661d Mon Sep 17 00:00:00 2001 From: Yanick Minder Date: Fri, 22 Nov 2024 09:26:52 +0100 Subject: [PATCH] update config for eslint stylic --- frontend/eslint.config.mjs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/frontend/eslint.config.mjs b/frontend/eslint.config.mjs index b797b944ab..ee14055024 100644 --- a/frontend/eslint.config.mjs +++ b/frontend/eslint.config.mjs @@ -25,6 +25,10 @@ export default tsEslint.config( "@typescript-eslint/no-unused-vars": "off", "@typescript-eslint/no-unused-expressions": "off", "no-undef": "off", + "@stylistic/function-call-argument-newline": ["error", "never"], + "@stylistic/padded-blocks": ["error", "never"], + "@stylistic/dot-location": ["error", "property"], + "@stylistic/newline-per-chained-call": ["error", { "ignoreChainWithDepth": 1 }] }, } );