Skip to content

Commit

Permalink
feat: update git ignore
Browse files Browse the repository at this point in the history
  • Loading branch information
axelilali committed Dec 8, 2023
1 parent da3e926 commit 3d670ba
Showing 1 changed file with 51 additions and 3 deletions.
54 changes: 51 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,52 @@
.vscode
# Ignore files and directories generated by your IDE or text editor
.idea/
.vscode/
*.sublime-project
*.sublime-workspace

# Ignore operating system files
.DS_Store
Thumbs.db

# Ignore log and temporary files
*.log
*.swp
*.tmp

# Ignore compiled code and binaries
*.class
*.jar
*.war
*.ear
*.pyc
*.pyo
__pycache__/

# Ignore environment-specific files
.env
vendor
node_modules

# Ignore dependencies
/node_modules
/bower_components
/vendor

# Ignore build and distribution directories
/dist/
/build/
/out/

# Ignore configuration files that may contain sensitive information
*.config
*.conf
*.ini

# Ignore package-lock.json, yarn.lock, etc.
package-lock.json
yarn.lock

# Ignore Jekyll build directory
_site/

# Ignore miscellaneous files
.DS_Store
Thumbs.db

0 comments on commit 3d670ba

Please sign in to comment.