From 215100fd1b921481afb690517c4aecd367f981ae Mon Sep 17 00:00:00 2001 From: hywax Date: Sat, 23 Mar 2024 01:36:28 +0500 Subject: [PATCH] chore: update eslint config --- eslint.config.js | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/eslint.config.js b/eslint.config.js index 97227d0..0985e54 100644 --- a/eslint.config.js +++ b/eslint.config.js @@ -2,12 +2,6 @@ import antfu from '@antfu/eslint-config' export default antfu({ typescript: true, - ignores: [ - '.output', - '.github', - 'dist', - 'node_modules', - ], vue: { overrides: { 'vue/block-order': ['error', { @@ -22,4 +16,11 @@ export default antfu({ 'curly': ['error', 'all'], 'antfu/consistent-list-newline': 'off', }, +}, { + ignores: [ + '.github', + '.output', + 'dist', + 'node_modules', + ], })