From 322ec3ba77e9579c7f64e48d0e9a803fa88e49aa Mon Sep 17 00:00:00 2001 From: castrogarciajs Date: Sun, 16 Jun 2024 12:24:58 -0500 Subject: [PATCH] Ignore files `*.{yaml,yml}` no-formatter --- eslint.config.mjs | 1 + pnpm-workspace.yaml | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/eslint.config.mjs b/eslint.config.mjs index ffa95ea..7ed20c2 100644 --- a/eslint.config.mjs +++ b/eslint.config.mjs @@ -4,4 +4,5 @@ export default eslint({ formatters: true, typescript: true, markdown: true, + ignores: ['*.{yaml,yml}'], }) diff --git a/pnpm-workspace.yaml b/pnpm-workspace.yaml index e6d2c10..ea7eee5 100644 --- a/pnpm-workspace.yaml +++ b/pnpm-workspace.yaml @@ -1,3 +1,3 @@ packages: - - ./ - - playground + - './' + - 'playground'