Skip to content

Commit

Permalink
Create .gitignore
Browse files Browse the repository at this point in the history
  • Loading branch information
ChananM authored Apr 5, 2018
1 parent 4c8a652 commit b848b0f
Showing 1 changed file with 77 additions and 0 deletions.
77 changes: 77 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,77 @@
# https://git-scm.com/docs/gitignore
# https://help.github.com/articles/ignoring-files
# Example .gitignore files: https://github.com/github/gitignore

# --------------------
# OSX Files
# --------------------
.DS_Store
.AppleDouble
.LSOverride

._*
.Spotlight-V100
.Trashes

# --------------------
# Eclipse or Nodeclipse "Enide Studio" Files
# --------------------
# recommended to add to Git SCM
# or generate with `nodeclipse -p` command
.project
.settings/
.*.md.html


# --------------------
# IntelliJ Files
# --------------------
*.iml
*.ipr
*.iws
.idea/

# --------------------
# Netbeans Files
# --------------------
nbproject/private/

nbbuild/
dist/
nbdist/
nbactions.xml
nb-configuration.xml

# --------------------
# Node Files
# --------------------
.nodemonignore
npm-debug.log
AgudaApp/node_modules/

# --------------------
# SASS Files
# --------------------
.sass-cache/

# --------------------
# Bower Files
# --------------------
.bower-*/
bower_components

# --------------------
# App Files
# --------------------
data/
tests/results/**
modules/public/
modules/views/
/public/build/
/packages/contrib/
/packages/**/**/public/assets/lib

# --------------------
# vim Files
# --------------------
*.swp

0 comments on commit b848b0f

Please sign in to comment.