Skip to content

Commit

Permalink
Merge pull request #277 from eosnetworkfoundation/zach-gitignore
Browse files Browse the repository at this point in the history
Create a .gitignore
  • Loading branch information
kj4ezj authored Jan 12, 2023
2 parents 4287221 + 42faf46 commit 08e56f6
Showing 1 changed file with 66 additions and 0 deletions.
66 changes: 66 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,66 @@
# archives
*.7z
*.tar
*.tar.gz
*.tgz
*.zip

# build artifacts
build
cmake-build-debug

# compiled dynamic libraries
*.dll
*.dylib
*.so

# compiled object files
*.lo
*.o
*.obj
*.slo

# compiled static libraries
*.a
*.la
*.lai
*.lib

# data
*.csv
*.html
*.json
*.tsv
*.xhtml
*.xls
*.xlsx
*.xml

# editor files
.ccls-cache
.idea
*.vim
.vscode

# executables
*.app
*.exe
*.out

# logs
*.log
*.txt

# macOS
.DS_Store

# precompiled headers
*.gch
*.pch

# prerequisites
*.d

# python
__pycache__
.mypy_cache

0 comments on commit 08e56f6

Please sign in to comment.