From 5392efaf7148f0f8838ae0fa8b239f6893dd9e17 Mon Sep 17 00:00:00 2001 From: Jaakko Husso Date: Mon, 30 Jun 2025 12:01:06 +0300 Subject: [PATCH] fix(editor): Disable vue eslint rules that were conflicting with our formatting (no-changelog) (#16823) --- packages/@n8n/eslint-config/src/configs/frontend.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/packages/@n8n/eslint-config/src/configs/frontend.ts b/packages/@n8n/eslint-config/src/configs/frontend.ts index 9c3c1cd0e18..1cc0f0a8b3e 100644 --- a/packages/@n8n/eslint-config/src/configs/frontend.ts +++ b/packages/@n8n/eslint-config/src/configs/frontend.ts @@ -91,6 +91,10 @@ export const frontendConfig = tseslint.config( ], 'vue/no-v-html': 'error', + // Disabled as these conflict with our current formatting style, and we trust on prettier here. + 'vue/html-indent': 'off', + 'vue/max-attributes-per-line': 'off', + // TODO: remove these 'vue/no-mutating-props': 'warn', 'vue/no-side-effects-in-computed-properties': 'warn',