From ddf399f18134784cb58060e6f21b5a3d27a1211f Mon Sep 17 00:00:00 2001 From: tianyingchun Date: Mon, 12 Aug 2024 20:30:47 +0800 Subject: [PATCH] fix: updates --- README.md | 2 +- eslint.config.js | 17 ++++++++++------- 2 files changed, 11 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index bfbfd21..fdaf89d 100644 --- a/README.md +++ b/README.md @@ -32,4 +32,4 @@ The starter template for running Github Pages with docusaurus for document ## references -* https://github.com/peaceiris/actions-gh-pages +- https://github.com/peaceiris/actions-gh-pages diff --git a/eslint.config.js b/eslint.config.js index c9bf557..57e0144 100644 --- a/eslint.config.js +++ b/eslint.config.js @@ -1,10 +1,13 @@ import { base, defineConfig } from '@hyperse/eslint-config-hyperse'; -export default defineConfig([ - ...base, - { - rules: { - '@typescript-eslint/no-explicit-any': 'off', +export default defineConfig( + [ + ...base, + { + rules: { + '@typescript-eslint/no-explicit-any': 'off', + }, }, - }, -]); + ], + ['**/coverage'] +);