mirror of https://github.com/exaloop/codon.git
71 lines
921 B
Plaintext
71 lines
921 B
Plaintext
######################
|
|
# Generic .gitignore #
|
|
######################
|
|
|
|
# Compiled source #
|
|
###################
|
|
*.com
|
|
*.class
|
|
*.dll
|
|
*.exe
|
|
*.o
|
|
*.a
|
|
*.obj
|
|
*.so
|
|
*.dylib
|
|
*.pyc
|
|
build/
|
|
install/
|
|
install_*/
|
|
install-*/
|
|
extra/python/src/jit.cpp
|
|
extra/jupyter/build/
|
|
|
|
# Packages #
|
|
############
|
|
# it's better to unpack these files and commit the raw source
|
|
# git has its own built-in compression methods
|
|
*.7z
|
|
*.dmg
|
|
*.iso
|
|
*.jar
|
|
*.rar
|
|
*.tar
|
|
*.zip
|
|
**/**.egg-info
|
|
|
|
# Logs and databases #
|
|
######################
|
|
*.log
|
|
*.sql
|
|
*.sqlite
|
|
|
|
# OS generated files #
|
|
######################
|
|
.DS_Store
|
|
.DS_Store?
|
|
._*
|
|
.Spotlight-V100
|
|
.Trashes
|
|
ehthumbs.db
|
|
Thumbs.db
|
|
|
|
# IDE generated files #
|
|
#######################
|
|
.idea
|
|
.mypy_cache
|
|
.vscode
|
|
.cache
|
|
.ipynb_checkpoints
|
|
|
|
# CMake generated files #
|
|
#########################
|
|
jupyter/share/jupyter/kernels/codon/kernel.json
|
|
jit/codon/version.py
|
|
|
|
# Testing files #
|
|
#################
|
|
temp/
|
|
playground/
|
|
scratch*.*
|