From f3e9cd51479fd41f3c0e8863ac13c77d6daa2605 Mon Sep 17 00:00:00 2001 From: Rob Rose Date: Mon, 24 Apr 2023 20:06:43 -0400 Subject: [PATCH] fix(ignore): added yarn directories to ignorefiles Added yarn files and directories to gitignore and eslintignore. --- .eslintignore | 3 ++- .gitignore | 11 ++++++++++- 2 files changed, 12 insertions(+), 2 deletions(-) diff --git a/.eslintignore b/.eslintignore index 2564398..e816868 100644 --- a/.eslintignore +++ b/.eslintignore @@ -2,4 +2,5 @@ .vscode node_modules public -dist \ No newline at end of file +dist +.yarn \ No newline at end of file diff --git a/.gitignore b/.gitignore index 4fdc5e7..2a2df19 100644 --- a/.gitignore +++ b/.gitignore @@ -23,4 +23,13 @@ pnpm-debug.log* .astro # ignore Jampack cache files -.jampack/ \ No newline at end of file +.jampack/ + +# yarn +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/sdks +!.yarn/versions +.pnp.*