forked from KULeuven-COSIC/SCALE-MAMBA
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d8bc74e
commit 7595ebd
Showing
1 changed file
with
96 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,96 @@ | ||
# Offline data, runtime logs # | ||
############################## | ||
logs/* | ||
|
||
# Ignore files without extension | ||
* | ||
!*/ | ||
!*.* | ||
|
||
# Personal CONFIG file # | ||
############################## | ||
CONFIG.mine | ||
config_mine.py | ||
|
||
# Temporary files # | ||
################### | ||
*.bak | ||
*.orig | ||
*.rej | ||
*.tmp | ||
callgrind.out.* | ||
|
||
# Vim | ||
.*.swp | ||
tags | ||
|
||
# Eclipse # | ||
########### | ||
.project | ||
.cproject | ||
.settings | ||
|
||
# VS Code IDE # | ||
############### | ||
.vscode/** | ||
|
||
# Temporary files # | ||
################### | ||
*.bak | ||
*.orig | ||
*.rej | ||
*.tmp | ||
callgrind.out.* | ||
|
||
# Compiled source # | ||
################### | ||
Programs/*/*.sch | ||
Programs/*/*.bc | ||
*.com | ||
*.class | ||
*.dll | ||
*.exe | ||
*.x | ||
*.o | ||
*.so | ||
*.pyc | ||
*.bc | ||
*.sch | ||
*.a | ||
*.static | ||
*.d | ||
|
||
# Packages # | ||
############ | ||
# it's better to unpack these files and commit the raw source | ||
# git has its own built in compression methods | ||
*.7z | ||
*.dmg | ||
*.gz | ||
*.iso | ||
*.jar | ||
*.rar | ||
*.tar | ||
*.zip | ||
|
||
# Latex # | ||
######### | ||
*.aux | ||
*.lof | ||
*.log | ||
*.lot | ||
*.fls | ||
*.out | ||
*.toc | ||
*.fmt | ||
*.bbl | ||
*.bcf | ||
*.blg | ||
|
||
|
||
# Logs and databases # | ||
###################### | ||
*.log | ||
*.sql | ||
*.sqlite | ||
*.data |