fix(editor): Disable vue eslint rules that were conflicting with our formatting (no-changelog) (#16823)

This commit is contained in:
Jaakko Husso
2025-06-30 12:01:06 +03:00
committed by GitHub
parent 934ddda30e
commit 5392efaf71

View File

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