From fdcb8b5ff0795952a8f9264494b664cb18cbdda4 Mon Sep 17 00:00:00 2001 From: Nicola Spadari Date: Sat, 8 Feb 2025 12:18:14 +0100 Subject: [PATCH] Update eslint rules --- eslint.config.mjs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/eslint.config.mjs b/eslint.config.mjs index aa193a0..178befc 100644 --- a/eslint.config.mjs +++ b/eslint.config.mjs @@ -6,7 +6,6 @@ export default eslintConfig( { typescript: true, vue: true, - unocss: true, stylistic: { indent: "tab", quotes: "double" @@ -27,7 +26,9 @@ export default eslintConfig( "vue/script-indent": ["error", "tab", { baseIndent: 1 }], + "vue/comma-dangle": ["warn", "never"], "antfu/top-level-function": "off", + "antfu/if-newline": "off", "node/prefer-global/process": ["off"] } },