Skip to content

Commit 435819b

Browse files
authored
Create .gitignore
1 parent f5b954d commit 435819b

1 file changed

Lines changed: 34 additions & 0 deletions

File tree

.gitignore

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
cat > ~/tips-ecosystem/.gitignore << 'EOF'
2+
# Dependencies
3+
node_modules/
4+
5+
# Hardhat
6+
cache/
7+
artifacts/
8+
9+
# Environment
10+
.env
11+
.env.local
12+
13+
# IDE
14+
.vscode/
15+
.idea/
16+
*.swp
17+
*.swo
18+
19+
# OS
20+
.DS_Store
21+
Thumbs.db
22+
23+
# Logs
24+
*.log
25+
npm-debug.log*
26+
27+
# Test coverage
28+
coverage/
29+
coverage.json
30+
31+
# Temporary
32+
tmp/
33+
temp/
34+
EOF

0 commit comments

Comments
 (0)