-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
85 lines (74 loc) · 1.37 KB
/
.gitignore
File metadata and controls
85 lines (74 loc) · 1.37 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
# General ignores
#-------------------------------------------------------------------------------
# Operating System files
.DS_Store
Thumbs.db
ehthumbs.db
Desktop.ini
*.swp
*.swo
*~
# IDE and editor specific files
.idea/
.vscode/
.claude/
.cursor/
*.suo
*.user
*.userosscache
*.sln.docstates
*.project.json
*.tmproj
*.sublime-project
*.sublime-workspace
# Log files (generic, will catch logs from any tool/language)
*.log
logs/
*.log.*
# Environment files - typically sensitive, should not be committed
.env
.env.*
!.env.example
!.env.sample
# If you have .env files specific to subprojects, e.g. subproject/.env,
# the .env rule above will catch them.
# Build output & temporary directories (generic)
.cache/
.buildx-cache/
temp/
tmp/
# Archives
*.zip
*.tar
*.gz
*.rar
*.7z
# Local configuration and backup files
.local/
*-local.*
.local
# Node.js specific
#-------------------------------------------------------------------------------
# Dependency directories
node_modules/
# Debug logs
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
lerna-debug.log*
# Compiled TypeScript files info
*.tsbuildinfo
# Build output directories
build/
dist/
out/
public/ # If serving static assets from a 'public' dir built by a framework
.next/
.nuxt/
.svelte-kit/
# Test reports and coverage (often from Node.js tools like Jest, Mocha)
coverage/
.nyc_output/
junit/
mochawesome-report/