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',