Skip to content

Commit 37cf20b

Browse files
committed
chore: update gitignore to ignore vercel/turborepo
1 parent 16adcd1 commit 37cf20b

9 files changed

Lines changed: 23 additions & 24 deletions

File tree

.github/workflows/label-sync.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,11 @@ concurrency:
44
group: ${{ github.workflow }}-${{ github.ref }}
55
cancel-in-progress: true
66

7+
# Define permissions required for syncing labels
78
permissions:
8-
contents: read
9-
issues: write
10-
pull-requests: write
9+
contents: read # To checkout the repository
10+
issues: write # To read/write labels on issues
11+
pull-requests: write # To read/write labels on pull requests
1112

1213
on:
1314
schedule:

.gitignore

Lines changed: 17 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,26 @@
1-
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
2-
3-
# Ignore a blackhole and the folder for development
1+
# Dependencies
42
node_modules/
5-
.nx/
3+
4+
# Vercel
5+
.vercel/
6+
.turbo/
7+
8+
# Production
9+
build/
10+
dist/
611

712
# misc
813
.DS_Store
14+
Thumbs.db
15+
16+
# Local env
17+
.env
918
.env.local
1019
.env.development.local
11-
.env.test.local
1220
.env.production.local
21+
.env.test.local
22+
!.env.example
1323

14-
# Build Artifacts
15-
dist/
16-
build/
17-
docs/
1824

1925
*.tsbuildinfo
2026
*.zip
@@ -27,7 +33,5 @@ docs/
2733
# Ignore log files
2834
*.log
2935

30-
# Ignore package locks
31-
package-lock.json
32-
33-
.env
36+
# Old
37+
.old/

.turbo/cache/9e8edf664d591d99-meta.json

Lines changed: 0 additions & 1 deletion
This file was deleted.
-373 Bytes
Binary file not shown.

.turbo/cache/c0d01bec2fe147fb-meta.json

Lines changed: 0 additions & 1 deletion
This file was deleted.
-418 Bytes
Binary file not shown.

.turbo/daemon/8f3e94670acfe09d-turbo.log.2025-05-27

Whitespace-only changes.

.turbo/preferences/tui.json

Lines changed: 0 additions & 4 deletions
This file was deleted.

.vscode/settings.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@
1111
"files.eol": "\n",
1212
"files.exclude": {
1313
"**/node_modules": true,
14-
"**/.git": true,
1514
"**/.turbo": true,
16-
"**/.next": true
15+
"**/.next": true,
16+
"**/.git": true
1717
},
1818
"files.associations": {
1919
"tsconfig.json": "jsonc"

0 commit comments

Comments
 (0)