Skip to content

Commit

Permalink
chore: Update .gitignore for the project repo
Browse files Browse the repository at this point in the history
Description
===========
- Added rules to ignore Python, Solidity, TypeScript build files.
- Added rules to ignore log files, databases, OS files, lock files.
- Ignored various IDE/editor temporary files and directories.

Inpact
=========
This is to keeps the repo clean and avoid unnecessary commits.
  • Loading branch information
0xf333 committed Jul 27, 2023
1 parent 6626e02 commit 271ab9e
Showing 1 changed file with 45 additions and 1 deletion.
46 changes: 45 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# Current ignores
decrypt/target
decrypt/ciphertexts
res/
node_modules/
.venv
.vscode

node_modules
.env
coverage
Expand All @@ -16,3 +16,47 @@ typechain-types
cache
artifacts

# Python files
env/
*.pyc
*.pyo
*.pyd
__pycache__/
*.py[cod]
*$py.class

# Solidity files
build/

# TypeScript files
dist/
*.tsbuildinfo

# Logs and databases
*.log
*.sql
*.sqlite

# OS generated files
.DS_Store
.DS_Store?
._*
.Spotlight-V100
.Trashes
ehthumbs.db
Thumbs.db

# Package lock files
package-lock.json
yarn.lock

# IDE/Editor folders
.idea/
*.swp
*.swo
*.swn
*.bak
*.orig
*.old
*.sage.py

0 comments on commit 271ab9e

Please sign in to comment.