Skip to content

Commit f3e9cd5

Browse files
committed
fix(ignore): added yarn directories to ignorefiles
Added yarn files and directories to gitignore and eslintignore.
1 parent 4c1b9c8 commit f3e9cd5

File tree

2 files changed

+12
-2
lines changed

2 files changed

+12
-2
lines changed

.eslintignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,5 @@
22
.vscode
33
node_modules
44
public
5-
dist
5+
dist
6+
.yarn

.gitignore

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,4 +23,13 @@ pnpm-debug.log*
2323
.astro
2424

2525
# ignore Jampack cache files
26-
.jampack/
26+
.jampack/
27+
28+
# yarn
29+
.yarn/*
30+
!.yarn/patches
31+
!.yarn/plugins
32+
!.yarn/releases
33+
!.yarn/sdks
34+
!.yarn/versions
35+
.pnp.*

0 commit comments

Comments
 (0)