File tree Expand file tree Collapse file tree 2 files changed +107
-3
lines changed
Expand file tree Collapse file tree 2 files changed +107
-3
lines changed Original file line number Diff line number Diff line change 1+ # Git
2+ .git
3+ .gitignore
4+
5+ # Documentation
6+ README.md
7+ * .md
8+
9+ # IDE and editor files
10+ .vscode /
11+ .idea /
12+ * .swp
13+ * .swo
14+ * ~
15+
16+ # OS generated files
17+ .DS_Store
18+ .DS_Store ?
19+ ._ *
20+ .Spotlight-V100
21+ .Trashes
22+ ehthumbs.db
23+ Thumbs.db
24+
25+ # Logs
26+ logs
27+ * .log
28+ npm-debug.log *
29+ yarn-debug.log *
30+ yarn-error.log *
31+
32+ # Runtime data
33+ pids
34+ * .pid
35+ * .seed
36+ * .pid.lock
37+
38+ # Coverage directory used by tools like istanbul
39+ coverage /
40+ * .lcov
41+
42+ # nyc test coverage
43+ .nyc_output
44+
45+ # Optional eslint cache
46+ .eslintcache
47+
48+ # Microbundle cache
49+ .rpt2_cache /
50+ .rts2_cache_cjs /
51+ .rts2_cache_es /
52+ .rts2_cache_umd /
53+
54+ # Optional REPL history
55+ .node_repl_history
56+
57+ # Output of 'npm pack'
58+ * .tgz
59+
60+ # Yarn Integrity file
61+ .yarn-integrity
62+
63+ # parcel-bundler cache (https://parceljs.org/)
64+ .cache
65+ .parcel-cache
66+
67+ # Next.js build output
68+ .next
69+
70+ # Nuxt.js build / generate output
71+ .nuxt
72+ dist
73+
74+ # Gatsby files
75+ .cache /
76+ public
77+
78+ # Storybook build outputs
79+ .out
80+ .storybook-out
81+
82+ # Temporary folders
83+ tmp /
84+ temp /
85+
86+ # Test files (optional - remove if you want tests in Docker)
87+ test /
88+ * _test.ts
89+ * _test.js
90+ * .test.ts
91+ * .test.js
92+
93+ # Environment files
94+ .env
95+ .env.local
96+ .env.development.local
97+ .env.test.local
98+ .env.production.local
99+
100+ # Build outputs
101+ build /
102+ dist /
103+ out /
104+
105+ # Test outputs
106+ test-results /
107+ coverage /
Original file line number Diff line number Diff line change 8888tmp /
8989temp /
9090
91- # Docker
92- .dockerignore
93-
9491# Build outputs
9592build /
9693dist /
You can’t perform that action at this time.
0 commit comments