Skip to content

Commit

Permalink
feat: add gitignore and gitattributes file
Browse files Browse the repository at this point in the history
  • Loading branch information
mehul0810 committed Dec 14, 2018
1 parent 7caa3a7 commit a547b6c
Show file tree
Hide file tree
Showing 2 changed files with 57 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
/.* export-ignore
CHANGELOG.txt export-ignore
composer.* export-ignore
package.json export-ignore
phpcs.ruleset.xml export-ignore
phpunit.* export-ignore
README.md export-ignore
tests export-ignore
49 changes: 49 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
# Unit tests
/tmp
/tests/bin/tmp

# Numerous always-ignore extensions
.diff
.err
.orig
.log
.rej
.swo
.swp
.vi
~
.sass-cache

# OS or Editor folders
.DS_Store
Thumbs.db
.cache
.project
.settings
.tmproj
*.esproj
nbproject
*.sublime-project
*.sublime-workspace
.vscode

# Dreamweaver added files
_notes
dwsync.xml

# Komodo
*.komodoproject
.komodotools

# Folders to ignore
.hg
.svn
.CVS
intermediate
.idea
cache
node_modules
assets/dist/

# Composer
vendor

0 comments on commit a547b6c

Please sign in to comment.