From e0ad62165d3a38f7706ceb63da87aaf53b05e510 Mon Sep 17 00:00:00 2001 From: virginieVachet Date: Tue, 23 Jul 2024 09:36:52 +0200 Subject: [PATCH] add eslint config for ci --- eslint.config.js | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 eslint.config.js diff --git a/eslint.config.js b/eslint.config.js new file mode 100644 index 0000000000..aee5f35a97 --- /dev/null +++ b/eslint.config.js @@ -0,0 +1,9 @@ +export default [ + { + rules: { + 'vue/html-self-closing': 'off', + 'vue/multi-word-component-names': 'off', + '@typescript-eslint/no-explicit-any': 'off', + }, + }, +]