Skip to content

Commit

Permalink
initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
mindovermiles262 committed Mar 10, 2017
1 parent 2575d0d commit c4ffecd
Show file tree
Hide file tree
Showing 9 changed files with 39,518 additions and 2 deletions.
305 changes: 305 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,305 @@
#######################################
# Operating Systems #
#######################################

# OS X
.DS_Store
._*
.Spotlight-V100
.Trashes

# KDE directory preferences
.directory

# Windows
Desktop.ini
.bundle
.tmtags
tags
vendor.tags
tmtagsHistory
Icon
Thumbs.db
ehthumbs.db
$RECYCLE.BIN/
Icon?


#######################################
# Temporary #
#######################################

# Files
*.tmp
*.log

# Directories
log/
logs/
tmp/
cache/


#######################################
# Archives #
#######################################

*.7z
*.bz2
*.bzip
*.deb
*.dmg
*.egg
*.gem
*.gz
*.iso
*.lzma
*.rar
*.rpm
*.tar
*.xpi
*.xz
*.zip


#######################################
# IDE and Editors #
#######################################

# Eclipse
*.pydevproject
.project
.metadata
bin
bin/**
*~.nib
local.properties
.classpath
.settings/
.loadpath
.externalToolBuilders/
*.launch
.cproject
.buildpath

# Netbeans
nbproject/private/
build/
nbbuild/
dist/
nbdist/
nbactions.xml
nb-configuration.xml

# IntelliJ IDEA
*.iml
*.ipr
*.iws
.idea/

# XCode
xcuserdata
project.xcworkspace

# Notepad++
nppBackup

# SublimeText project files
*.sublime-workspace
*.sublime-project

# Textmate
*.tmproj
*.tmproject
tmtags

# vim
.*.sw[a-z]
*.un~
Session.vim
.netrwhist

# Visual Studio Code
.vscode

# Editors with AutoBackup
*~


#######################################
# Build Systems #
#######################################

# Autotools
Makefile.in
autom4te.cache
aclocal.m4
compile
configure
depcomp
install-sh
missing

# waf
.waf-*
.lock-*

# Maven
target
pom.xml.tag
pom.xml.releaseBackup
pom.xml.next
release.properties
dependency-reduced-pom.xml


#######################################
# Version Control Systems #
#######################################

# Mercurial
/.hg/*
*/.hg/*
.hgignore

# SVN
.svn/


#######################################
# Languages #
#######################################

# Java
*.class
*.ear
*.jar
*.war

# C
*.o
*.lib
*.a
*.dll
*.ko
*.so
*.so.*
*.dylib
*.exe
*.com
*.out
*.app

# C++
*.slo
*.lo
*.o
*.so
*.dylib
*.lai
*.la
*.a

# Latex
*.acn
*.acr
*.alg
*.aux
*.bcf
*.bbl
*.blg
*.brf
*.dvi
*.fdb_latexmk
*.fls
*.glg
*.glo
*.gls
*.idx
*.ilg
*.ind
*.ist
*.lof
*.log
*.lol
*.lot
*.maf
*.mtc
*.mtc0
*.nav
*.nlo
*.out
*.pdfsync
*.pdftex
*.ps
*.pyg
*.snm
*.synctex.gz
*.thm
*.toc
*.vrb
*.xdy
*.tdo

# Python
*.pyc

# Rust
target/

# Scala - sbt specific
.cache
.history
lib_managed/
src_managed/
project/boot/
project/plugins/project/
project/target

# Scala - IDE specific
.scala_dependencies
.worksheet


#######################################
# Server #
#######################################

cgi-bin/
error_log
.bash_logout
.bash_profile
.bashrc
.cgi-bin/
.contactemail
.cpanel/
.cpanel-logs
.ftpquota
.htpasswd
.htpasswds
.HttpRequest/
.lastlogin
.rnd
.trash/


#######################################
# Caches #
#######################################

# SASS
.sass-cache


#######################################
# File backups #
#######################################

*.bak
*.backup

#######################################
# File backups #
#######################################

*.sqlite
Loading

0 comments on commit c4ffecd

Please sign in to comment.