Add a gitignore
This commit is contained in:
parent
10cfccda21
commit
60817ccb46
1 changed files with 46 additions and 0 deletions
46
.gitignore
vendored
Normal file
46
.gitignore
vendored
Normal file
|
|
@ -0,0 +1,46 @@
|
||||||
|
# Project related
|
||||||
|
mk
|
||||||
|
|
||||||
|
# Go related
|
||||||
|
|
||||||
|
# Java related
|
||||||
|
pom.xml
|
||||||
|
*.class
|
||||||
|
|
||||||
|
# Python
|
||||||
|
*.pyc
|
||||||
|
*.pyo
|
||||||
|
/__pycache__/
|
||||||
|
|
||||||
|
# Ruby
|
||||||
|
#Gemfile.lock
|
||||||
|
.sass-cache/
|
||||||
|
|
||||||
|
# Temp Files
|
||||||
|
*.orig
|
||||||
|
*~
|
||||||
|
.*.swp
|
||||||
|
.*.swo
|
||||||
|
*.tmp
|
||||||
|
*.bak
|
||||||
|
|
||||||
|
# Editors (IntelliJ / Eclipse)
|
||||||
|
*/.idea
|
||||||
|
.idea
|
||||||
|
*/.classpath
|
||||||
|
.classpath
|
||||||
|
*/.project
|
||||||
|
.project
|
||||||
|
*/.settings
|
||||||
|
.settings
|
||||||
|
|
||||||
|
# OS X
|
||||||
|
.DS_Store
|
||||||
|
|
||||||
|
# Logging
|
||||||
|
*.log
|
||||||
|
/logs/
|
||||||
|
|
||||||
|
# Builds
|
||||||
|
*.o
|
||||||
|
out/
|
||||||
Loading…
Add table
Add a link
Reference in a new issue