From 3baadb5eeb82c3d3c6424f624e075b6f5078dcb1 Mon Sep 17 00:00:00 2001 From: Daniel Roe Date: Mon, 22 Apr 2024 15:42:47 +0100 Subject: [PATCH] chore: slight reformatting --- eslint.config.mjs | 23 +++++++++++++---------- 1 file changed, 13 insertions(+), 10 deletions(-) diff --git a/eslint.config.mjs b/eslint.config.mjs index 6a5580d26..3d3656b28 100644 --- a/eslint.config.mjs +++ b/eslint.config.mjs @@ -13,15 +13,18 @@ export default createConfigForNuxt({ './example', ], }, -}).append({ - files: ['test/**'], - rules: { - '@typescript-eslint/no-explicit-any': 'off', +}).append( + { + files: ['test/**'], + rules: { + '@typescript-eslint/no-explicit-any': 'off', + }, }, -}, { - rules: { - '@typescript-eslint/no-invalid-void-type': 'off', - // TODO: remove this rule - '@typescript-eslint/no-explicit-any': 'off', + { + rules: { + '@typescript-eslint/no-invalid-void-type': 'off', + // TODO: remove this rule + '@typescript-eslint/no-explicit-any': 'off', + }, }, -}) +)